mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Batch, not bash!! Correct the syntax.
This commit is contained in:
4
Make.bat
4
Make.bat
@@ -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
|
REM If we're using VC++, and this is Python 3.6+, we need a hack for PyCrypto
|
||||||
IF "%MAKE%" == "nmake" (
|
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%"
|
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 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.
|
REM above or it will break qmake. Sigh.
|
||||||
IF "%MAKE%" == "nmake" (
|
IF "%MAKE%" == "nmake" (
|
||||||
IF %PYTHON_VERSION% >= 36 SET CL=
|
IF %PYTHON_VERSION% GEQ 36 SET CL=
|
||||||
)
|
)
|
||||||
|
|
||||||
CD %WD%
|
CD %WD%
|
||||||
|
|||||||
Reference in New Issue
Block a user