aboutsummaryrefslogtreecommitdiffstats
path: root/knights
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-03-30 17:57:47 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-03-30 17:57:47 +0000
commitc7ffbb1b03a9d1aa55f45a6eb25b1d12bcf50dbe (patch)
treeccb79f8dd271e99ce59cacb66919434e06aadea3 /knights
parent3c42de300e1e00b066c679fe2cf93a11cbc9505a (diff)
downloadopenembedded-c7ffbb1b03a9d1aa55f45a6eb25b1d12bcf50dbe.tar.gz
append exactly one '/' after ${palmtopdir}, not zero, not two and not even more than two
BKrev: 4069b51bi0pkDQWoVJdPxCUNQKlZOw
Diffstat (limited to 'knights')
-rw-r--r--knights/knights_1.14.oe10
1 files changed, 5 insertions, 5 deletions
diff --git a/knights/knights_1.14.oe b/knights/knights_1.14.oe
index 0846185c57..17ca7cecaa 100644
--- a/knights/knights_1.14.oe
+++ b/knights/knights_1.14.oe
@@ -20,9 +20,9 @@ do_configure_prepend() {
}
do_install() {
- install -d ${D}${palmtopdir}{bin,apps/Games,pics}
- install -D -m 755 knights/knights ${D}${palmtopdir}bin/knights
- install -D -m 644 knights.desktop ${D}${palmtopdir}apps/Games/knights.desktop
- install -d ${D}${palmtopdir}pics
- cp -a pics/knights ${D}${palmtopdir}pics/
+ install -d ${D}${palmtopdir}/{bin,apps/Games,pics}
+ install -D -m 755 knights/knights ${D}${palmtopdir}/bin/knights
+ install -D -m 644 knights.desktop ${D}${palmtopdir}/Games/knights.desktop
+ install -d ${D}${palmtopdir}/pics
+ cp -a pics/knights ${D}${palmtopdir}/pics/
}