diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-12-02 04:26:52 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-12-02 04:26:52 +0000 |
commit | c392d1ac8b3f0c1fad9829a836fc5cccc5faa41e (patch) | |
tree | 7a6a98f1b15e64711fe0ec25530279edf62d00ee /sys-apps/bootdisk | |
parent | *** empty log message *** (diff) | |
download | historical-c392d1ac8b3f0c1fad9829a836fc5cccc5faa41e.tar.gz historical-c392d1ac8b3f0c1fad9829a836fc5cccc5faa41e.tar.bz2 historical-c392d1ac8b3f0c1fad9829a836fc5cccc5faa41e.zip |
*** empty log message ***
Diffstat (limited to 'sys-apps/bootdisk')
-rwxr-xr-x | sys-apps/bootdisk/files/mkcd.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys-apps/bootdisk/files/mkcd.sh b/sys-apps/bootdisk/files/mkcd.sh index a9dcce4db56c..b759b59933d8 100755 --- a/sys-apps/bootdisk/files/mkcd.sh +++ b/sys-apps/bootdisk/files/mkcd.sh @@ -17,6 +17,7 @@ doexes() { for i in $@ do cp `which $i` $i + strip $i done } @@ -147,10 +148,12 @@ do if [ -f /lib/$i ] then cp /lib/$i ${ROOT}/lib/$i + strip ${ROOT}/lib/$i else if [ -f /usr/lib/$i ] then cp /usr/lib/$i ${ROOT}/usr/lib/$i + strip ${ROOT}/usr/lib/$i else echo "$i not found !" fi |