Skip to content

Commit ffa2f02

Browse files
author
christian.heimes
committed
More 3.0 -> 3.1 transistion in the Windows and OS/2 build files
git-svn-id: http://svn.python.org/projects/python/branches/py3k@67519 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent e776e35 commit ffa2f02

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

PC/VS8.0/build_ssl.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
if not defined HOST_PYTHON (
33
if %1 EQU Debug (
44
set HOST_PYTHON=python_d.exe
5-
if not exist python30_d.dll exit 1
5+
if not exist python31_d.dll exit 1
66
) ELSE (
77
set HOST_PYTHON=python.exe
8-
if not exist python30.dll exit 1
8+
if not exist python31.dll exit 1
99
)
1010
)
1111
%HOST_PYTHON% build_ssl.py %1 %2 %3

PC/VS8.0/kill_python.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ main(int argc, char **argv)
106106
/*
107107
* XXX TODO: if we really wanted to be fancy, we could check the
108108
* modules for all processes (not just the python[_d].exe ones)
109-
* and see if any of our DLLs are loaded (i.e. python30[_d].dll),
109+
* and see if any of our DLLs are loaded (i.e. python31[_d].dll),
110110
* as that would also inhibit our ability to rebuild the solution.
111111
* Not worth loosing sleep over though; for now, a simple check
112112
* for just the python executable should be sufficient.

PCbuild/build_ssl.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
if not defined HOST_PYTHON (
33
if %1 EQU Debug (
44
set HOST_PYTHON=python_d.exe
5-
if not exist python30_d.dll exit 1
5+
if not exist python31_d.dll exit 1
66
) ELSE (
77
set HOST_PYTHON=python.exe
8-
if not exist python30.dll exit 1
8+
if not exist python31.dll exit 1
99
)
1010
)
1111
%HOST_PYTHON% build_ssl.py %1 %2 %3

0 commit comments

Comments
 (0)