[Python-checkins] r42033 - sandbox/trunk/setuptools/setuptools/command/build_ext.py

phillip.eby python-checkins at python.org
Fri Jan 13 22:59:05 CET 2006


Author: phillip.eby
Date: Fri Jan 13 22:59:05 2006
New Revision: 42033

Modified:
   sandbox/trunk/setuptools/setuptools/command/build_ext.py
Log:
Oops.


Modified: sandbox/trunk/setuptools/setuptools/command/build_ext.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/command/build_ext.py	(original)
+++ sandbox/trunk/setuptools/setuptools/command/build_ext.py	Fri Jan 13 22:59:05 2006
@@ -164,13 +164,13 @@
 
     def build_extension(self, ext):
         _compiler = self.compiler
-        _rpath = ext.runtime_library_path
+        _rpath = ext.runtime_library_dirs
         _ldirs = library_dirs
         try:
             if isinstance(ext,Library):
                 self.compiler = self.shlib_compiler
             if have_rtld and self.links_to_dynamic(ext):
-                ext.runtime_library_path = _rpath + [os.curdir]
+                ext.runtime_library_dirs = _rpath + [os.curdir]
                 ext.library_dirs = _ldirs + [
                     os.path.dirname(
                         os.path.join(self.build_lib,
@@ -184,7 +184,7 @@
             _build_ext.build_extension(self,ext)
         finally:
             self.compiler = _compiler
-            ext.runtime_library_path = _rpath
+            ext.runtime_library_dirs = _rpath
             ext.library_dirs = _ldirs
 
 


More information about the Python-checkins mailing list