You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.4 KiB
30 lines
1.4 KiB
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
|
From: David Malcolm <dmalcolm@redhat.com> |
|
Date: Wed, 13 Jan 2010 21:25:18 +0000 |
|
Subject: [PATCH] 00001: Fixup distutils/unixccompiler.py to remove standard |
|
library path from rpath Was Patch0 in ivazquez' python3000 specfile |
|
|
|
--- |
|
Lib/distutils/unixccompiler.py | 9 +++++++++ |
|
1 file changed, 9 insertions(+) |
|
|
|
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py |
|
index 4d7a6de740..353086a648 100644 |
|
--- a/Lib/distutils/unixccompiler.py |
|
+++ b/Lib/distutils/unixccompiler.py |
|
@@ -82,6 +82,15 @@ class UnixCCompiler(CCompiler): |
|
if sys.platform == "cygwin": |
|
exe_extension = ".exe" |
|
|
|
+ def _fix_lib_args(self, libraries, library_dirs, runtime_library_dirs): |
|
+ """Remove standard library path from rpath""" |
|
+ libraries, library_dirs, runtime_library_dirs = super()._fix_lib_args( |
|
+ libraries, library_dirs, runtime_library_dirs) |
|
+ libdir = sysconfig.get_config_var('LIBDIR') |
|
+ if runtime_library_dirs and (libdir in runtime_library_dirs): |
|
+ runtime_library_dirs.remove(libdir) |
|
+ return libraries, library_dirs, runtime_library_dirs |
|
+ |
|
def preprocess(self, source, output_file=None, macros=None, |
|
include_dirs=None, extra_preargs=None, extra_postargs=None): |
|
fixed_args = self._fix_compile_args(None, macros, include_dirs)
|
|
|