diff options
author | Eric Andersen | 1999-11-22 07:41:00 +0000 |
---|---|---|
committer | Eric Andersen | 1999-11-22 07:41:00 +0000 |
commit | cb41c2e83b9e9997b9737d7061d53f7c11a463a8 (patch) | |
tree | 9fed0b9a9a44389618c13d8094b26224355d3108 /applets/install.sh | |
parent | 5d44d1fda593248c154ec68b38ce946a69f9b0fc (diff) | |
download | busybox-cb41c2e83b9e9997b9737d7061d53f7c11a463a8.zip busybox-cb41c2e83b9e9997b9737d7061d53f7c11a463a8.tar.gz |
Bug fixes
Diffstat (limited to 'applets/install.sh')
-rwxr-xr-x | applets/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applets/install.sh b/applets/install.sh index 4c2a4f1..458e65c 100755 --- a/applets/install.sh +++ b/applets/install.sh @@ -12,11 +12,11 @@ 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' `; - 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 ) + mkdir -p $1$mypath + (cd $1$mypath && rm -f $1$mypath$myapp && ln -s /bin/busybox $1$mypath$myapp ) done rm -f $1/bin/busybox install -m 755 busybox $1/bin/busybox - +exit 0 |