summaryrefslogtreecommitdiffstats
path: root/PCbuild/prepare_ssl.bat
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2017-12-30 23:17:36 (GMT)
committerGitHub <noreply@github.com>2017-12-30 23:17:36 (GMT)
commit6c6d3a46087bacb9c767c8cf2185505348d3796d (patch)
tree55d0e2c1c363f2833403bd458c7a891725dddd9d /PCbuild/prepare_ssl.bat
parent0d3ccb4395cccb11a50289c84c9a0dbbac03c647 (diff)
downloadcpython-6c6d3a46087bacb9c767c8cf2185505348d3796d.zip
cpython-6c6d3a46087bacb9c767c8cf2185505348d3796d.tar.gz
cpython-6c6d3a46087bacb9c767c8cf2185505348d3796d.tar.bz2
Add missing backslashes in PCbuild bat files (GH-5056)
Diffstat (limited to 'PCbuild/prepare_ssl.bat')
-rw-r--r--PCbuild/prepare_ssl.bat10
1 files changed, 5 insertions, 5 deletions
diff --git a/PCbuild/prepare_ssl.bat b/PCbuild/prepare_ssl.bat
index 5a3de2d..bfdac54 100644
--- a/PCbuild/prepare_ssl.bat
+++ b/PCbuild/prepare_ssl.bat
@@ -45,19 +45,19 @@ goto Usage
if not defined SRC (echo --in directory is required & exit /b 1)
if not defined OUT (echo --out directory is required & exit /b 1)
-call "%PCBUILD%find_msbuild.bat" %MSBUILD%
+call "%PCBUILD%\find_msbuild.bat" %MSBUILD%
if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
-call "%PCBUILD%find_python.bat" "%PYTHON%"
+call "%PCBUILD%\find_python.bat" "%PYTHON%"
if ERRORLEVEL 1 (echo Cannot locate python.exe on PATH or as PYTHON variable & exit /b 3)
-call "%PCBUILD%get_externals.bat" --openssl-src %ORG_SETTING%
+call "%PCBUILD%\get_externals.bat" --openssl-src %ORG_SETTING%
if "%PERL%" == "" where perl > "%TEMP%\perl.loc" 2> nul && set /P PERL= <"%TEMP%\perl.loc" & del "%TEMP%\perl.loc"
if "%PERL%" == "" (echo Cannot locate perl.exe on PATH or as PERL variable & exit /b 4)
-%MSBUILD% "%PCBUILD%openssl.vcxproj" /p:Configuration=Release /p:Platform=Win32
+%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=Win32
if errorlevel 1 exit /b
-%MSBUILD% "%PCBUILD%openssl.vcxproj" /p:Configuration=Release /p:Platform=x64
+%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=x64
if errorlevel 1 exit /b