Batch, not bash!! Correct the syntax.

This commit is contained in:
Dave Page 2018-05-23 13:09:40 +01:00
parent fa07400fdd
commit 61d8072a8c

View File

@ -183,7 +183,7 @@ REM Main build sequence Ends
REM If we're using VC++, and this is Python 3.6+, we need a hack for PyCrypto
IF "%MAKE%" == "nmake" (
IF %PYTHON_VERSION% >= 36 SET CL=-FI"%VCINSTALLDIR%\INCLUDE\stdint.h"
IF %PYTHON_VERSION% GEQ 36 SET CL=-FI"%VCINSTALLDIR%\INCLUDE\stdint.h"
)
CD "%PGBUILDPATH%"
@ -199,7 +199,7 @@ REM Main build sequence Ends
REM If we're using VC++, and this is Python 3.6+, we need to remove the hack
REM above or it will break qmake. Sigh.
IF "%MAKE%" == "nmake" (
IF %PYTHON_VERSION% >= 36 SET CL=
IF %PYTHON_VERSION% GEQ 36 SET CL=
)
CD %WD%