diff options
author | PJ Eby <distutils-sig@python.org> | 2006-01-13 21:59:05 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-01-13 21:59:05 +0000 |
commit | eb8c892b98be8410b2ec084ed6d7a33ea164bf4b (patch) | |
tree | d11bcd7c4d97950ccde499a61c9450588776c94e | |
parent | 9e80a1dbc6c841f6c36ee2325e60d0566b920944 (diff) | |
download | external_python_setuptools-eb8c892b98be8410b2ec084ed6d7a33ea164bf4b.tar.gz external_python_setuptools-eb8c892b98be8410b2ec084ed6d7a33ea164bf4b.tar.bz2 external_python_setuptools-eb8c892b98be8410b2ec084ed6d7a33ea164bf4b.zip |
Oops.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042033
-rw-r--r-- | setuptools/command/build_ext.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py index 9b886fca..6d5fb124 100644 --- a/setuptools/command/build_ext.py +++ b/setuptools/command/build_ext.py @@ -164,13 +164,13 @@ class build_ext(_build_ext): 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 @@ class build_ext(_build_ext): _build_ext.build_extension(self,ext) finally: self.compiler = _compiler - ext.runtime_library_path = _rpath + ext.runtime_library_dirs = _rpath ext.library_dirs = _ldirs |