summaryrefslogtreecommitdiff
path: root/applets/install.sh
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-01 22:54:48 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-01 22:54:48 +0000
commit5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf (patch)
tree233c051da862595b6e473e832051708e2d9803cb /applets/install.sh
parent12c2429a4242a157217c5bc9673a531fa1e1de61 (diff)
downloadbusybox-w32-5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf.tar.gz
busybox-w32-5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf.tar.bz2
busybox-w32-5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf.zip
- fixes parallel builds (make -j)
- use less resources for the buildsystem itself
Diffstat (limited to 'applets/install.sh')
-rwxr-xr-xapplets/install.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/applets/install.sh b/applets/install.sh
index 2c643f2f2..0173e7a44 100755
--- a/applets/install.sh
+++ b/applets/install.sh
@@ -28,7 +28,8 @@ if [ "$DO_INSTALL_LIBS" != "n" ]; then
28 for i in $DO_INSTALL_LIBS; do 28 for i in $DO_INSTALL_LIBS; do
29 rm -f $prefix/$libdir/$i || exit 1 29 rm -f $prefix/$libdir/$i || exit 1
30 if [ -f $i ]; then 30 if [ -f $i ]; then
31 install -m 644 $i $prefix/$libdir/ || exit 1 31 cp -a $i $prefix/$libdir/ || exit 1
32 chmod 0644 $prefix/$libdir/$i || exit 1
32 fi 33 fi
33 done 34 done
34fi 35fi