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 /pcmcia-cs | |
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 'pcmcia-cs')
-rw-r--r-- | pcmcia-cs/pcmcia-cs_3.2.7.oe | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pcmcia-cs/pcmcia-cs_3.2.7.oe b/pcmcia-cs/pcmcia-cs_3.2.7.oe index f0509bd172..d577445dea 100644 --- a/pcmcia-cs/pcmcia-cs_3.2.7.oe +++ b/pcmcia-cs/pcmcia-cs_3.2.7.oe @@ -16,12 +16,13 @@ do_configure() { } do_install() { - install -d ${D}/${sbindir}/ + install -d ${D}/${sbindir} for f in cardmgr/cardctl cardmgr/cardmgr cardmgr/ide_info cardmgr/ifport cardmgr/ifuser cardmgr/pcinitrd flash/ftl_check flash/ftl_format do install -m 0755 $f ${D}/${sbindir}/ done - install -d ${D}/${sysconfdir}/{init.d,pcmcia} + install -d ${D}/${sysconfdir}/init.d \ + ${D}/${sysconfdir}/pcmcia cp -a etc/* ${D}/${sysconfdir}/pcmcia/ install -m 0755 etc/rc.pcmcia ${D}/${sysconfdir}/init.d/pcmcia } |