diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-05-28 22:30:03 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-05-28 22:30:03 (GMT) |
commit | 41a6a625d488fee413427f9bf682c199dce97be7 (patch) | |
tree | 436da690cd8510300241f987340c6b85ed861e6e /PCbuild/prepare_ssl.bat | |
parent | 7a219110e6b9972a96e78e389e243c5cecfcfccc (diff) | |
download | cpython-41a6a625d488fee413427f9bf682c199dce97be7.zip cpython-41a6a625d488fee413427f9bf682c199dce97be7.tar.gz cpython-41a6a625d488fee413427f9bf682c199dce97be7.tar.bz2 |
Update Windows build for 3.6
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 c08a9f3..3153615 100644 --- a/PCbuild/prepare_ssl.bat +++ b/PCbuild/prepare_ssl.bat @@ -3,10 +3,10 @@ if not defined HOST_PYTHON ( if %1 EQU Debug (
shift
set HOST_PYTHON=python_d.exe
- if not exist python35_d.dll exit 1
+ if not exist python36_d.dll exit 1
) ELSE (
set HOST_PYTHON=python.exe
- if not exist python35.dll exit 1
+ if not exist python36.dll exit 1
)
)
%HOST_PYTHON% prepare_ssl.py %1
|