Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5d899dd

Browse files
committed
Merged revisions 87280 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ........ r87280 | eric.araujo | 2010-12-15 22:07:22 +0100 (mer., 15 déc. 2010) | 2 lines Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558). ........
1 parent 7e2e321 commit 5d899dd

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Lib/distutils/command/build_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def finalize_options(self):
214214

215215
elif MSVC_VERSION == 8:
216216
self.library_dirs.append(os.path.join(sys.exec_prefix,
217-
'PC', 'VS8.0', 'win32release'))
217+
'PC', 'VS8.0'))
218218
elif MSVC_VERSION == 7:
219219
self.library_dirs.append(os.path.join(sys.exec_prefix,
220220
'PC', 'VS7.1'))

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Core and Builtins
2121
Library
2222
-------
2323

24+
- Issue #9558: Fix distutils.command.build_ext with VS 8.0.
25+
2426
- Issue #10695: passing the port as a string value to telnetlib no longer
2527
causes debug mode to fail.
2628

0 commit comments

Comments
 (0)