aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-22 07:41:00 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-22 07:41:00 +0000
commitcb41c2e83b9e9997b9737d7061d53f7c11a463a8 (patch)
tree9fed0b9a9a44389618c13d8094b26224355d3108 /install.sh
parent5d44d1fda593248c154ec68b38ce946a69f9b0fc (diff)
downloadbusybox-cb41c2e83b9e9997b9737d7061d53f7c11a463a8.tar.gz
Bug fixes
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index 4c2a4f1b8..458e65ce9 100755
--- a/install.sh
+++ b/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