aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-22 06:01:01 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-22 06:01:01 +0000
commit17f534f1048c52c064ff9e8135840f430022fd5f (patch)
tree3c9c2fe966a64b69a46897de94771fc3dde50b01 /applets
parentb529b093f7e6f0cac998f35c68514fe0a8d82759 (diff)
downloadbusybox-w32-17f534f1048c52c064ff9e8135840f430022fd5f.tar.gz
busybox-w32-17f534f1048c52c064ff9e8135840f430022fd5f.tar.bz2
busybox-w32-17f534f1048c52c064ff9e8135840f430022fd5f.zip
Stuf
git-svn-id: svn://busybox.net/trunk/busybox@114 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rwxr-xr-xapplets/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/install.sh b/applets/install.sh
index 9721102a1..4c2a4f1b8 100755
--- a/applets/install.sh
+++ b/applets/install.sh
@@ -10,10 +10,10 @@ fi
10h=`sort busybox.links | uniq` 10h=`sort busybox.links | uniq`
11 11
12for i in $h ; do 12for i in $h ; do
13 echo "Symlinking $i to /bin/busybox"
14 mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `; 13 mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `;
15 myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `; 14 myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `;
16 mkdir -p $1$mypath 15 mkdir -p $1$mypath
16 echo " $1$mypath$myapp -> /bin/busybox"
17 (cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp ) 17 (cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp )
18done 18done
19rm -f $1/bin/busybox 19rm -f $1/bin/busybox