summaryrefslogtreecommitdiffstats
path: root/buildqt64.bat
diff options
context:
space:
mode:
authorJoerg Koenig <Joerg.Koenig@techsat.com>2019-05-15 21:40:36 (GMT)
committerJoerg Koenig <Joerg.Koenig@techsat.com>2019-05-15 21:40:36 (GMT)
commitd7a902b0a5efc6308faee663a2cc63163b1a45fc (patch)
tree19d8883614bb3a92c0e5a2df7d3a24ee58ac2a34 /buildqt64.bat
parentd7bdf5ed0b3b02f9492a1d2c71a87805a120d7b0 (diff)
downloadQt-d7a902b0a5efc6308faee663a2cc63163b1a45fc.zip
Qt-d7a902b0a5efc6308faee663a2cc63163b1a45fc.tar.gz
Qt-d7a902b0a5efc6308faee663a2cc63163b1a45fc.tar.bz2
Fixed windows scripts
Change-Id: I81baedfd7bf12648b3948a5f5f3d7ba1da5a168d
Diffstat (limited to 'buildqt64.bat')
-rw-r--r--buildqt64.bat9
1 files changed, 7 insertions, 2 deletions
diff --git a/buildqt64.bat b/buildqt64.bat
index 0dd65ac..8d32cd6 100644
--- a/buildqt64.bat
+++ b/buildqt64.bat
@@ -6,6 +6,10 @@ IF NOT DEFINED SDKDIR (
ECHO SDKDIR is not defined.
EXIT /b 1
)
+if not defined PERLDIR (
+ echo PERLDIR is not defined.
+ exit /b 1
+)
if not defined NASMDIR (
echo NASMDIR is not defined.
exit /b 1
@@ -15,7 +19,8 @@ if not defined MSYSDIR (
exit /b 1
)
-set PATH=%MSYSDIR%\usr\bin;%PATH%
+set PATH=%PERLDIR%\bin;%MSYSDIR%\usr\bin;%PATH%
+set PERL=%PERLDIR%\bin\perl.exe
SET QT_VERSION=5.12
SET QT_RELEASE=3
@@ -43,7 +48,7 @@ if %errorlevel% neq 0 exit /b %errorlevel%
rem - static -
cd %OPENSSL%
-call perl Configure VC-WIN64A --prefix=%BASEDIR%openssl-%INST_ARCH%
+call %PERL% Configure VC-WIN64A --prefix=%BASEDIR%openssl-%INST_ARCH%
if %errorlevel% neq 0 exit /b %errorlevel%
call ms\do_win64a
if %errorlevel% neq 0 exit /b %errorlevel%