diff options
author | Eric Andersen | 1999-11-22 06:01:01 +0000 |
---|---|---|
committer | Eric Andersen | 1999-11-22 06:01:01 +0000 |
commit | 5d44d1fda593248c154ec68b38ce946a69f9b0fc (patch) | |
tree | 3c9c2fe966a64b69a46897de94771fc3dde50b01 /applets | |
parent | 0f4c0848c7057dd696d82f9a0ca5cc8749a4131a (diff) | |
download | busybox-5d44d1fda593248c154ec68b38ce946a69f9b0fc.zip busybox-5d44d1fda593248c154ec68b38ce946a69f9b0fc.tar.gz |
Stuf
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/install.sh b/applets/install.sh index 9721102..4c2a4f1 100755 --- a/applets/install.sh +++ b/applets/install.sh @@ -10,10 +10,10 @@ fi h=`sort busybox.links | uniq` for i in $h ; do - echo "Symlinking $i to /bin/busybox" mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `; myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `; mkdir -p $1$mypath + echo " $1$mypath$myapp -> /bin/busybox" (cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp ) done rm -f $1/bin/busybox |