[Python-checkins] r68522 - in python/branches/release26-maint: PC/VS8.0/build_ssl.bat PCbuild/build_ssl.bat

hirokazu.yamamoto python-checkins at python.org
Sun Jan 11 04:32:00 CET 2009


Author: hirokazu.yamamoto
Date: Sun Jan 11 04:32:00 2009
New Revision: 68522

Log:
Fixed version number in build_ssl.bat.

Modified:
   python/branches/release26-maint/PC/VS8.0/build_ssl.bat
   python/branches/release26-maint/PCbuild/build_ssl.bat

Modified: python/branches/release26-maint/PC/VS8.0/build_ssl.bat
==============================================================================
--- python/branches/release26-maint/PC/VS8.0/build_ssl.bat	(original)
+++ python/branches/release26-maint/PC/VS8.0/build_ssl.bat	Sun Jan 11 04:32:00 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 python26_d.dll exit 1
   ) ELSE (
     set HOST_PYTHON=python.exe
-    if not exist python30.dll exit 1
+    if not exist python26.dll exit 1
   )
 )
 %HOST_PYTHON% build_ssl.py %1 %2 %3

Modified: python/branches/release26-maint/PCbuild/build_ssl.bat
==============================================================================
--- python/branches/release26-maint/PCbuild/build_ssl.bat	(original)
+++ python/branches/release26-maint/PCbuild/build_ssl.bat	Sun Jan 11 04:32:00 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 python26_d.dll exit 1
   ) ELSE (
     set HOST_PYTHON=python.exe
-    if not exist python30.dll exit 1
+    if not exist python26.dll exit 1
   )
 )
 %HOST_PYTHON% build_ssl.py %1 %2 %3


More information about the Python-checkins mailing list