Making note of my changes
[oweals/busybox.git] / install.sh
index 4a0b83254c36d518e11b64518bc8d218c637b222..769d1f4a3d70e473fda45b6cda89ab56b8d0d3fe 100755 (executable)
@@ -1,17 +1,20 @@
 #!/bin/sh
 
+set -e
+
 if [ "$1" == "" ]; then
-    echo "No installation directory aborting."
+    echo "No installation directory, aborting."
     exit 1;
 fi
 
-h=`cat busybox.links`
+h=`sort busybox.links | uniq`
 
-mkdir -p $1/bin
 for i in $h ; do
-       mkdir -p $1/`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `
-       (cd $1/bin ; ln -s busybox `echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' ` )
+       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
 install -m 755 busybox $1/bin/busybox
 
+exit 0