diff options
author | Greg Gilbert <greg@treke.net> | 2004-03-30 05:10:19 +0000 |
---|---|---|
committer | Greg Gilbert <greg@treke.net> | 2004-03-30 05:10:19 +0000 |
commit | 3339c8dcff4dadfc1da443b4c1c8962c66cec759 (patch) | |
tree | 1e1327c06f6d0fcf97a51f5adeb9f579c29c5094 /tximage | |
parent | 3115fb3e0d8d769e2994bcd6463e5403188fab4b (diff) |
Need trailing /'s on the ${palmtopdir} variables or else packaging breaks
BKrev: 4069013bNOLHbHoHCQbPIhUI6UlFOQ
Diffstat (limited to 'tximage')
-rw-r--r-- | tximage/tximage_0.2.oe | 8 |
1 files changed, 4 insertions, 4 deletions
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/ } |