[Python-checkins] r87280 - in python/branches/py3k: Lib/distutils/command/build_ext.py Misc/NEWS

eric.araujo python-checkins at python.org
Wed Dec 15 22:07:22 CET 2010


Author: eric.araujo
Date: Wed Dec 15 22:07:22 2010
New Revision: 87280

Log:
Fix build_ext with VS 8.0.  Patch by Hirokazu Yamamoto (#9558).


Modified:
   python/branches/py3k/Lib/distutils/command/build_ext.py
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Lib/distutils/command/build_ext.py
==============================================================================
--- python/branches/py3k/Lib/distutils/command/build_ext.py	(original)
+++ python/branches/py3k/Lib/distutils/command/build_ext.py	Wed Dec 15 22:07:22 2010
@@ -214,7 +214,7 @@
 
             elif MSVC_VERSION == 8:
                 self.library_dirs.append(os.path.join(sys.exec_prefix,
-                                         'PC', 'VS8.0', 'win32release'))
+                                         'PC', 'VS8.0'))
             elif MSVC_VERSION == 7:
                 self.library_dirs.append(os.path.join(sys.exec_prefix,
                                          'PC', 'VS7.1'))

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Wed Dec 15 22:07:22 2010
@@ -17,6 +17,8 @@
 Library
 -------
 
+- Issue #9558: Fix distutils.command.build_ext with VS 8.0.
+
 - Issue #10667: Fast path for collections.Counter().
 
 - Issue #10695: passing the port as a string value to telnetlib no longer


More information about the Python-checkins mailing list