Update internal.h to conditionally include asm/string.h
[oweals/busybox.git] / install.sh
index 5f0d2d5da09dd5694e96c9caccea888affba2142..65190f59d85b10ed6f1bd18c4c63f13b1c5505c2 100755 (executable)
@@ -2,24 +2,20 @@
 
 set -e
 
-if [ "$1" == "" ]; then
+if [ "$1" = "" ]; then
     echo "No installation directory, aborting."
     exit 1;
 fi
-rm -rf $1
 
 h=`sort busybox.links | uniq`
 
 for i in $h ; do
-       echo "working on $i now"
-       mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `;
-       myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `;
-       echo "mkdir -p $1$mypath"
-       echo "(cd $1$mypath ; ln -s /bin/busybox $1$mypath$myapp )"
-       mkdir -p $1$mypath
-       (cd $1$mypath ; ln -s /bin/busybox $1$mypath$myapp )
+       echo "  $1$i -> /bin/busybox"
+       mkdir -p $1/`echo $i | sed -e 's/\/[^\/]*$//' `
+       ln -fs /bin/busybox $1$i
 done
 rm -f $1/bin/busybox
+mkdir -p $1/bin
 install -m 755 busybox $1/bin/busybox
 
-
+exit 0