mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
wineshelllink: Fix menu entries with double spaces in their names.
This commit is contained in:
parent
3ab449c96a
commit
5f960781fc
1 changed files with 2 additions and 2 deletions
|
@ -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`
|
||||
(
|
||||
|
|
Loading…
Reference in a new issue