diff options
author | Chris Larson <clarson@kergoth.com> | 2004-04-20 03:11:30 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-04-20 03:11:30 +0000 |
commit | 210df3ce941d17ac9c0602a9f36c55328c6f5503 (patch) | |
tree | 2fa720957b2822f7288af0b27df38ca11e22f5c9 /knights/knights_1.14.oe | |
parent | 1ce1f6f837ae775b06c2c5ada398564f930a82d4 (diff) |
Merge
2004/04/19 14:02:59-05:00 ti.com!a0868066
Merges.
2004/04/19 14:00:46-05:00 ti.com!a0868066
Killing usage of {} expansion, which isnt supported by the ash shell.
BKrev: 408494e2t24Aqbe2prpXURtnZlhCmA
Diffstat (limited to 'knights/knights_1.14.oe')
-rw-r--r-- | knights/knights_1.14.oe | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/knights/knights_1.14.oe b/knights/knights_1.14.oe index 8f3d854b51..28cc87fa6b 100644 --- a/knights/knights_1.14.oe +++ b/knights/knights_1.14.oe @@ -20,9 +20,11 @@ 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}/Games/knights.desktop - install -d ${D}${palmtopdir}/pics - cp -a pics/knights ${D}${palmtopdir}/pics/ + install -d ${D}/${palmtopdir}/bin \ + ${D}/${palmtopdir}/apps/Games \ + ${D}/${palmtopdir}/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/ } |