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

Skip to content

Commit 60532bd

Browse files
committed
Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558).
1 parent 4433a5f commit 60532bd

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
@@ -17,6 +17,8 @@ Core and Builtins
1717
Library
1818
-------
1919

20+
- Issue #9558: Fix distutils.command.build_ext with VS 8.0.
21+
2022
- Issue #10667: Fast path for collections.Counter().
2123

2224
- Issue #10695: passing the port as a string value to telnetlib no longer

0 commit comments

Comments
 (0)