diff options
author | WiSo <wiso@xbmc.org> | 2011-05-21 20:39:15 +0200 |
---|---|---|
committer | WiSo <wiso@xbmc.org> | 2011-05-21 20:39:15 +0200 |
commit | de93dad9d0c414554ba5ab5ba870bd8294d3292b (patch) | |
tree | aabe5700c5e7346cd7073575ab0bd9d7ef90c86e | |
parent | 5a71b99b65c5fea8918d789e99ab18dee94ddb9a (diff) |
[WIN32] fixed: missing double quote
-rw-r--r-- | project/Win32BuildSetup/buildmingwlibs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/Win32BuildSetup/buildmingwlibs.sh b/project/Win32BuildSetup/buildmingwlibs.sh index fb544413cc..e87693bc27 100644 --- a/project/Win32BuildSetup/buildmingwlibs.sh +++ b/project/Win32BuildSetup/buildmingwlibs.sh @@ -78,7 +78,7 @@ echo "##### building of libmpeg2 dlls done #####" echo "##### building timidity dlls #####" cd /xbmc/lib/timidity/ -if [ $MAKECLEAN == "clean" ]; then +if [ "$MAKECLEAN" == "clean" ]; then make -f Makefile.win32 clean fi make -f Makefile.win32 |