diff options
-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 9aede0f53..415896893 100755 --- a/applets/install.sh +++ b/applets/install.sh | |||
@@ -83,7 +83,7 @@ install -m 755 busybox "$prefix/bin/busybox" || exit 1 | |||
83 | for i in $h; do | 83 | for i in $h; do |
84 | appdir=`dirname "$i"` | 84 | appdir=`dirname "$i"` |
85 | app=`basename "$i"` | 85 | app=`basename "$i"` |
86 | if [ x"$noclobber" = x"1" ] && [ -e "$prefix/$i" ]; then | 86 | if [ x"$noclobber" = x"1" ] && ([ -e "$prefix/$i" ] || [ -h "$prefix/$i" ]); then |
87 | echo " $prefix/$i already exists" | 87 | echo " $prefix/$i already exists" |
88 | continue | 88 | continue |
89 | fi | 89 | fi |