fix configure bootstrap on mingw with spaces in the builddir

the missing quotes would cause us to misdetect mingw as msys.

Change-Id: I408c0e6bfc3cbfecd02c54904cf96ab79e0b6d88
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
This commit is contained in:
Oswald Buddenhagen 2015-09-22 16:36:03 +02:00
parent be6758a4de
commit a75995124d

View File

@ -89,7 +89,7 @@ $(OBJECTS): $(PCH)
# sh-compatible shell. This is not a problem, because configure.bat
# will not do that.
ifeq ($(SHELL), sh.exe)
ifeq ($(wildcard $(CURDIR)/sh.exe), )
ifeq ($(wildcard "$(CURDIR)/sh.exe"), )
SH = 0
else
SH = 1