diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-03-08 18:29:24 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-03-08 18:29:24 (GMT) |
commit | 43cbd05b6cac24a0e1bf13cf326766d3dc3ebea9 (patch) | |
tree | e1b747081403e91f3359daab0e33d4052d5d4831 /PCbuild/prepare_ssl.bat | |
parent | 674e2d0ea05dac2dbcd7156ffb229066aa8acc17 (diff) | |
parent | 947f411b0d890925bc00ab88b120da725ab0e897 (diff) | |
download | cpython-43cbd05b6cac24a0e1bf13cf326766d3dc3ebea9.zip cpython-43cbd05b6cac24a0e1bf13cf326766d3dc3ebea9.tar.gz cpython-43cbd05b6cac24a0e1bf13cf326766d3dc3ebea9.tar.bz2 |
Issue #26465: Update Windows builds to use OpenSSL 1.0.2g.
Diffstat (limited to 'PCbuild/prepare_ssl.bat')
-rw-r--r-- | PCbuild/prepare_ssl.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/prepare_ssl.bat b/PCbuild/prepare_ssl.bat index 3153615..2f41ae8 100644 --- a/PCbuild/prepare_ssl.bat +++ b/PCbuild/prepare_ssl.bat @@ -1,6 +1,6 @@ @echo off
if not defined HOST_PYTHON (
- if %1 EQU Debug (
+ if "%1" EQU "Debug" (
shift
set HOST_PYTHON=python_d.exe
if not exist python36_d.dll exit 1
@@ -9,4 +9,4 @@ if not defined HOST_PYTHON ( if not exist python36.dll exit 1
)
)
-%HOST_PYTHON% prepare_ssl.py %1
+%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
|