diff options
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/install.sh | 2 |
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 | |||
10 | h=`sort busybox.links | uniq` | 10 | h=`sort busybox.links | uniq` |
11 | 11 | ||
12 | for i in $h ; do | 12 | for 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 ) |
18 | done | 18 | done |
19 | rm -f $1/bin/busybox | 19 | rm -f $1/bin/busybox |