+ in the interest of robustness, I added
[oweals/busybox.git] / install.sh
index 458e65ce9323dbfc32544aa4ca0f765dc0731d84..100b26bad28e48a8ac7d0eae807a3b045018b0b6 100755 (executable)
@@ -2,7 +2,7 @@
 
 set -e
 
-if [ "$1" == "" ]; then
+if [ "$1" = "" ]; then
     echo "No installation directory, aborting."
     exit 1;
 fi
@@ -10,11 +10,9 @@ fi
 h=`sort busybox.links | uniq`
 
 for i in $h ; do
-       mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `;
-       myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `;
-       echo "  $1$mypath$myapp -> /bin/busybox"
-       mkdir -p $1$mypath
-       (cd $1$mypath && rm -f $1$mypath$myapp && 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
 install -m 755 busybox $1/bin/busybox