aboutsummaryrefslogtreecommitdiff
path: root/applets/install.sh
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-12-03 09:19:54 +0000
committerEric Andersen <andersen@codepoet.org>1999-12-03 09:19:54 +0000
commitb186d980d6060195d01048bb3a083739137b6c21 (patch)
treef64b2d63850be12ce3081b2000784aa57ac29656 /applets/install.sh
parent77619b9dda2b0550fea519fba05f7d9790ef7eaf (diff)
downloadbusybox-b186d980d6060195d01048bb3a083739137b6c21.tar.gz
Stuf
Diffstat (limited to 'applets/install.sh')
-rwxr-xr-xapplets/install.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/applets/install.sh b/applets/install.sh
index 458e65ce9..670c0c6e1 100755
--- a/applets/install.sh
+++ b/applets/install.sh
@@ -10,11 +10,10 @@ 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/\/[^\/]*$//' `
+ rm -f $1$i
+ ln -s /bin/busybox $1$i
done
rm -f $1/bin/busybox
install -m 755 busybox $1/bin/busybox