Making note of my changes
[oweals/busybox.git] / install.sh
index 29c9e26d9e28acc2f90ca3f5be645e4ebeb257ed..769d1f4a3d70e473fda45b6cda89ab56b8d0d3fe 100755 (executable)
@@ -7,16 +7,14 @@ if [ "$1" == "" ]; then
     exit 1;
 fi
 
-# can't just use cat, rmdir is not unique
-#h=`cat busybox.links`
 h=`sort busybox.links | uniq`
 
-mkdir -p $1/bin
 for i in $h ; do
-       [ ${verbose} ] && echo "  making link to $i"
-       mkdir -p $1/`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `
-       ln -s busybox $1/bin/`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