diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-30 17:57:47 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-30 17:57:47 +0000 |
commit | c7ffbb1b03a9d1aa55f45a6eb25b1d12bcf50dbe (patch) | |
tree | ccb79f8dd271e99ce59cacb66919434e06aadea3 /brickout/brickout_2002.06.09.oe | |
parent | 3c42de300e1e00b066c679fe2cf93a11cbc9505a (diff) |
append exactly one '/' after ${palmtopdir}, not zero, not two and not even more than two
BKrev: 4069b51bi0pkDQWoVJdPxCUNQKlZOw
Diffstat (limited to 'brickout/brickout_2002.06.09.oe')
-rw-r--r-- | brickout/brickout_2002.06.09.oe | 24 |
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 } |