Commit 5f960781 authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

wineshelllink: Fix menu entries with double spaces in their names.

parent 3ab449c9
......@@ -153,8 +153,8 @@ BEGIN { RS="<" }
# new item
write_menu_file()
{
menu=`echo $1 | sed 's!/!-!g'`
filename=`echo $2 | sed 's!/!-!g'`
menu=`echo "$1" | sed 's!/!-!g'`
filename=`echo "$2" | sed 's!/!-!g'`
tmpfile=`mktemp /tmp/wine.XXXXXX`
(
......
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