summaryrefslogtreecommitdiffstats
path: root/configure.bat
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2012-09-18 17:26:52 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-09-21 02:44:22 +0200
commitc089f5e4408ecac35d3e82e3d8ac898e21c5b400 (patch)
tree663a3ed4715d814a1a3dd93799ad95b21332aa78 /configure.bat
parent098b817a9729425df2cc39f1c1aa2970ea60f8f3 (diff)
don't skip the syncqt call even when include/ exists
the syncqt run is now fast enough Change-Id: Ie95a617fe99791ed38d02fe41578a0136fb68ddc Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'configure.bat')
-rw-r--r--configure.bat18
1 files changed, 8 insertions, 10 deletions
diff --git a/configure.bat b/configure.bat
index b8bbf29fe7..7e36b5638d 100644
--- a/configure.bat
+++ b/configure.bat
@@ -48,18 +48,16 @@ echo Please wait while bootstrapping configure ...
for %%C in (cl.exe icl.exe g++.exe perl.exe) do set %%C=%%~$PATH:C
-if not exist include (
- if "%perl.exe%" == "" (
- echo Perl not found in PATH. Aborting. >&2
- exit /b 1
- )
- if not exist mkspecs (
- md mkspecs
- if errorlevel 1 goto exit
- )
- perl %QTSRC%bin\syncqt -minimal -module QtCore -outdir %QTDIR% %QTSRC%
+if "%perl.exe%" == "" (
+ echo Perl not found in PATH. Aborting. >&2
+ exit /b 1
+)
+if not exist mkspecs (
+ md mkspecs
if errorlevel 1 goto exit
)
+perl %QTSRC%bin\syncqt -minimal -module QtCore -outdir %QTDIR% %QTSRC%
+if errorlevel 1 goto exit
if not exist tools\configure (
md tools\configure