[Python-checkins] r68521 - in python/trunk: PC/VS8.0/build_ssl.bat PCbuild/build_ssl.bat

hirokazu.yamamoto python-checkins at python.org
Sun Jan 11 04:28:13 CET 2009


Author: hirokazu.yamamoto
Date: Sun Jan 11 04:28:13 2009
New Revision: 68521

Log:
Fixed version number in build_ssl.bat.

Modified:
   python/trunk/PC/VS8.0/build_ssl.bat
   python/trunk/PCbuild/build_ssl.bat

Modified: python/trunk/PC/VS8.0/build_ssl.bat
==============================================================================
--- python/trunk/PC/VS8.0/build_ssl.bat	(original)
+++ python/trunk/PC/VS8.0/build_ssl.bat	Sun Jan 11 04:28:13 2009
@@ -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

Modified: python/trunk/PCbuild/build_ssl.bat
==============================================================================
--- python/trunk/PCbuild/build_ssl.bat	(original)
+++ python/trunk/PCbuild/build_ssl.bat	Sun Jan 11 04:28:13 2009
@@ -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


More information about the Python-checkins mailing list