Fixed an unquoted string.

oldstable
Andreas Mohr 2000-12-14 20:30:35 +00:00 committed by Alexandre Julliard
parent 0348212609
commit 1a0eeb53a6
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ copy_icon()
{
dir=$1
mkdir -p "$dir"
mkdir -p "$dir/"`dirname "$link"` || true
mkdir -p "$dir/""`dirname "$link"`" || true
if [ -f "$icon" ]
then
cp "$icon" "$dir/$link.xpm"