aboutsummaryrefslogtreecommitdiffstats
path: root/brickout
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 /brickout
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 'brickout')
-rw-r--r--brickout/brickout_2002.06.09.oe24
1 files changed, 12 insertions, 12 deletions
diff --git a/brickout/brickout_2002.06.09.oe b/brickout/brickout_2002.06.09.oe
index 4597c50267..c97190344f 100644
--- a/brickout/brickout_2002.06.09.oe
+++ b/brickout/brickout_2002.06.09.oe
@@ -18,18 +18,18 @@ do_configure_prepend() {
}
do_install() {
- install -d ${D}${palmtopdir}{bin,apps/Games,pics,share/brickout/{sounds,music,images}}
- install -D -m 0755 brickout ${D}${palmtopdir}bin/brickout
- install -D -m 0644 brickout.png ${D}${palmtopdir}pics/brickout.png
+ install -d ${D}${palmtopdir}/{bin,apps/Games,pics,share/brickout/{sounds,music,images}}
+ install -D -m 0755 brickout ${D}${palmtopdir}/bin/brickout
+ install -D -m 0644 brickout.png ${D}${palmtopdir}/pics/brickout.png
- cp -a sounds/* ${D}${palmtopdir}share/brickout/sounds/
- cp -a music/* ${D}${palmtopdir}share/brickout/music/
- cp -a images-sdl/* ${D}${palmtopdir}share/brickout/images/
+ cp -a sounds/* ${D}${palmtopdir}/share/brickout/sounds/
+ cp -a music/* ${D}${palmtopdir}/share/brickout/music/
+ cp -a images-sdl/* ${D}${palmtopdir}/share/brickout/images/
- echo "[Desktop Entry]" >${D}${palmtopdir}apps/Games/brickout.desktop
- echo "Comment=Arkanoid game" >>${D}${palmtopdir}apps/Games/brickout.desktop
- echo "Exec=brickout" >>${D}${palmtopdir}apps/Games/brickout.desktop
- echo "Icon=brickout" >>${D}${palmtopdir}apps/Games/brickout.desktop
- echo "Type=Application" >>${D}${palmtopdir}apps/Games/brickout.desktop
- echo "Name=Brickout" >>${D}${palmtopdir}apps/Games/brickout.desktop
+ echo "[Desktop Entry]" >${D}${palmtopdir}/Games/brickout.desktop
+ echo "Comment=Arkanoid game" >>${D}${palmtopdir}/Games/brickout.desktop
+ echo "Exec=brickout" >>${D}${palmtopdir}/Games/brickout.desktop
+ echo "Icon=brickout" >>${D}${palmtopdir}/Games/brickout.desktop
+ echo "Type=Application" >>${D}${palmtopdir}/Games/brickout.desktop
+ echo "Name=Brickout" >>${D}${palmtopdir}/Games/brickout.desktop
}