diff options
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/install.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/applets/install.sh b/applets/install.sh index 670c0c6..769d1f4 100755 --- a/applets/install.sh +++ b/applets/install.sh @@ -12,8 +12,7 @@ h=`sort busybox.links | uniq` for i in $h ; do echo " $1$i -> /bin/busybox" mkdir -p $1/`echo $i | sed -e 's/\/[^\/]*$//' ` - rm -f $1$i - ln -s /bin/busybox $1$i + ln -fs /bin/busybox $1$i done rm -f $1/bin/busybox install -m 755 busybox $1/bin/busybox |