From: Greg Gilbert Date: Tue, 30 Mar 2004 05:10:19 +0000 (+0000) Subject: Need trailing /'s on the ${palmtopdir} variables or else packaging breaks X-Git-Tag: Release-2010-05/1~19822 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3339c8dcff4dadfc1da443b4c1c8962c66cec759;p=openembedded.git Need trailing /'s on the ${palmtopdir} variables or else packaging breaks BKrev: 4069013bNOLHbHoHCQbPIhUI6UlFOQ --- diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index 37cfe89e47..f994b361af 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -1,6 +1,7 @@ erich@erichl.mine.nu gbritton@doomcom.org ggilbert@olddog.(none) +ggilbert@olddog.treke.net ggilbert@treke.ath.cx kebert@geralt.doma kergoth@direwolf.(none) diff --git a/tximage/tximage_0.2.oe b/tximage/tximage_0.2.oe index a90f2d1e6c..9cea160e88 100644 --- a/tximage/tximage_0.2.oe +++ b/tximage/tximage_0.2.oe @@ -12,8 +12,8 @@ SRC_URI = "http://downloads.zaurususergroup.com/community/66.180.235.230/downloa inherit palmtop do_install() { - install -d ${D}${palmtopdir}{bin,apps/Applications,pics} - install -D -m 755 tximage ${D}${palmtopdir}bin/tximage - install -D -m 644 imageviewer.desktop ${D}${palmtopdir}apps/Applications/tximage.desktop - cp -a tximage.png ${D}${palmtopdir}pics/ + install -d ${D}${palmtopdir}/{bin,apps/Applications,pics} + install -D -m 755 tximage ${D}${palmtopdir}/bin/tximage + install -D -m 644 imageviewer.desktop ${D}${palmtopdir}/apps/Applications/tximage.desktop + cp -a tximage.png ${D}${palmtopdir}/pics/ }