diff --git a/tools/wineshelllink b/tools/wineshelllink index f1544d27b0f..eabeb99ff8b 100755 --- a/tools/wineshelllink +++ b/tools/wineshelllink @@ -42,12 +42,12 @@ do case "$1" in (--desktop) mode="desktop"; shift 1 ;; (--menu) mode="menu"; shift 1 ;; - (--path) path=$2; shift 2 ;; - (--link) link=$2; shift 2 ;; - (--args) args=$2; shift 2 ;; - (--icon) icon=$2; shift 2 ;; - (--descr) descr=$2; shift 2 ;; - (--workdir) workdir=$2; shift 2 ;; + (--path) path="$2"; shift 2 ;; + (--link) link="$2"; shift 2 ;; + (--args) args="$2"; shift 2 ;; + (--icon) icon="$2"; shift 2 ;; + (--descr) descr="$2"; shift 2 ;; + (--workdir) workdir="$2"; shift 2 ;; (*) usage ;; esac done @@ -64,10 +64,11 @@ fi kde_entry() { + xname=`basename "$link"` cat <