diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-01-11 03:28:13 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-01-11 03:28:13 (GMT) |
commit | 14aa4599ed83e527bef45c165ded69753993d6dd (patch) | |
tree | 3412ab24718e8e44654e5038bbb4ce693cf2dbf4 /PC | |
parent | 5ed4f6cfb94ad4175e6b616e2c011e0d5c11f502 (diff) | |
download | cpython-14aa4599ed83e527bef45c165ded69753993d6dd.zip cpython-14aa4599ed83e527bef45c165ded69753993d6dd.tar.gz cpython-14aa4599ed83e527bef45c165ded69753993d6dd.tar.bz2 |
Fixed version number in build_ssl.bat.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/VS8.0/build_ssl.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/VS8.0/build_ssl.bat b/PC/VS8.0/build_ssl.bat index 04eab5b..f06c2d1 100644 --- a/PC/VS8.0/build_ssl.bat +++ b/PC/VS8.0/build_ssl.bat @@ -2,10 +2,10 @@ if not defined HOST_PYTHON (
if %1 EQU Debug (
set HOST_PYTHON=python_d.exe
- if not exist python30_d.dll exit 1
+ if not exist python27_d.dll exit 1
) ELSE (
set HOST_PYTHON=python.exe
- if not exist python30.dll exit 1
+ if not exist python27.dll exit 1
)
)
%HOST_PYTHON% build_ssl.py %1 %2 %3
|