diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-22 07:41:00 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-22 07:41:00 +0000 |
commit | a97e1d1f07821e7d508dd7e5280583a5a6d5df4f (patch) | |
tree | 9fed0b9a9a44389618c13d8094b26224355d3108 /applets | |
parent | 17f534f1048c52c064ff9e8135840f430022fd5f (diff) | |
download | busybox-w32-a97e1d1f07821e7d508dd7e5280583a5a6d5df4f.tar.gz busybox-w32-a97e1d1f07821e7d508dd7e5280583a5a6d5df4f.tar.bz2 busybox-w32-a97e1d1f07821e7d508dd7e5280583a5a6d5df4f.zip |
Bug fixes
git-svn-id: svn://busybox.net/trunk/busybox@115 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-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 4c2a4f1b8..458e65ce9 100755 --- a/applets/install.sh +++ b/applets/install.sh | |||
@@ -12,11 +12,11 @@ h=`sort busybox.links | uniq` | |||
12 | for i in $h ; do | 12 | for i in $h ; do |
13 | mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `; | 13 | mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `; |
14 | myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `; | 14 | myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `; |
15 | mkdir -p $1$mypath | ||
16 | echo " $1$mypath$myapp -> /bin/busybox" | 15 | echo " $1$mypath$myapp -> /bin/busybox" |
17 | (cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp ) | 16 | mkdir -p $1$mypath |
17 | (cd $1$mypath && rm -f $1$mypath$myapp && ln -s /bin/busybox $1$mypath$myapp ) | ||
18 | done | 18 | done |
19 | rm -f $1/bin/busybox | 19 | rm -f $1/bin/busybox |
20 | install -m 755 busybox $1/bin/busybox | 20 | install -m 755 busybox $1/bin/busybox |
21 | 21 | ||
22 | 22 | exit 0 | |