Commit cb54fe66 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Remove -- from shell entries, since wine no longer filters it.

parent 0de3c828
...@@ -84,7 +84,7 @@ kde_entry() ...@@ -84,7 +84,7 @@ kde_entry()
# KDE Config File # KDE Config File
[KDE Desktop Entry] [KDE Desktop Entry]
Name=$xname Name=$xname
Exec=wine '$path' -- $args Exec=wine '$path' $args
Type=Application Type=Application
Comment=$descr Comment=$descr
EOF EOF
...@@ -98,7 +98,7 @@ gnome_entry() ...@@ -98,7 +98,7 @@ gnome_entry()
cat <<EOF cat <<EOF
[Desktop Entry] [Desktop Entry]
Name=$xname Name=$xname
Exec=wine "$path" -- $args Exec=wine "$path" $args
Type=Application Type=Application
Comment=$descr Comment=$descr
EOF EOF
...@@ -111,7 +111,7 @@ mdk_entry() ...@@ -111,7 +111,7 @@ mdk_entry()
base=`basename "$link"` base=`basename "$link"`
section=`dirname "$link"` section=`dirname "$link"`
[ -z "$icon" ] || xicon="icon=\"$xpmicon\"" [ -z "$icon" ] || xicon="icon=\"$xpmicon\""
echo "?package(local.Wine):needs=x11 section=\"Wine/$section\" title=\"$base\" longtitle=\"$descr\" command=\"wine \\\"$path\\\" -- $args\" $xicon" echo "?package(local.Wine):needs=x11 section=\"Wine/$section\" title=\"$base\" longtitle=\"$descr\" command=\"wine \\\"$path\\\" $args\" $xicon"
} }
# copy the icon file to a specified dir and set xpmicon to the resulting path # copy the icon file to a specified dir and set xpmicon to the resulting path
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment