Fixed an unquoted string.

This commit is contained in:
Andreas Mohr 2000-12-14 20:30:35 +00:00 committed by Alexandre Julliard
parent 0348212609
commit 1a0eeb53a6

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"