Skip to content

Commit

Permalink
don't skip the syncqt call even when include/ exists
Browse files Browse the repository at this point in the history
the syncqt run is now fast enough

Change-Id: Ie95a617fe99791ed38d02fe41578a0136fb68ddc
Reviewed-by: Joerg Bornemann <[email protected]>
  • Loading branch information
ossilator authored and The Qt Project committed Sep 21, 2012
1 parent 098b817 commit c089f5e
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions configure.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c089f5e

Please sign in to comment.