Blame SOURCES/python-2.6.4-distutils-rpath.patch

98d66e
diff -up Python-2.6.4/Lib/distutils/unixccompiler.py.distutils-rpath Python-2.6.4/Lib/distutils/unixccompiler.py
98d66e
--- Python-2.6.4/Lib/distutils/unixccompiler.py.distutils-rpath	2009-09-09 04:34:06.000000000 -0400
98d66e
+++ Python-2.6.4/Lib/distutils/unixccompiler.py	2010-03-15 21:33:25.000000000 -0400
98d66e
@@ -142,6 +142,16 @@ class UnixCCompiler(CCompiler):
98d66e
     if sys.platform == "cygwin":
98d66e
         exe_extension = ".exe"
98d66e
 
98d66e
+    def _fix_lib_args(self, libraries, library_dirs, runtime_library_dirs):
98d66e
+        """Remove standard library path from rpath"""
98d66e
+        libraries, library_dirs, runtime_library_dirs = \
98d66e
+            CCompiler._fix_lib_args(self, libraries, library_dirs,
98d66e
+                                    runtime_library_dirs)
98d66e
+        libdir = sysconfig.get_config_var('LIBDIR')
98d66e
+        if runtime_library_dirs and (libdir in runtime_library_dirs):
98d66e
+            runtime_library_dirs.remove(libdir)
98d66e
+        return libraries, library_dirs, runtime_library_dirs
98d66e
+
98d66e
     def preprocess(self, source,
98d66e
                    output_file=None, macros=None, include_dirs=None,
98d66e
                    extra_preargs=None, extra_postargs=None):