2019-11-20 09:35:05 +00:00
|
|
|
From dd253c4f803a5dfa2ba7dfdb01b722e47c2b02e8 Mon Sep 17 00:00:00 2001
|
2019-05-07 15:13:12 +00:00
|
|
|
From: David Malcolm <dmalcolm@redhat.com>
|
|
|
|
Date: Wed, 13 Jan 2010 21:25:18 +0000
|
2019-07-29 22:48:16 +00:00
|
|
|
Subject: [PATCH] 00001: Fixup distutils/unixccompiler.py to remove standard
|
|
|
|
library path from rpath Was Patch0 in ivazquez' python3000 specfile
|
2019-05-07 15:13:12 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
Lib/distutils/unixccompiler.py | 9 +++++++++
|
|
|
|
1 file changed, 9 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py
|
|
|
|
index d10a78da31..4df4b67810 100644
|
|
|
|
--- a/Lib/distutils/unixccompiler.py
|
|
|
|
+++ b/Lib/distutils/unixccompiler.py
|
|
|
|
@@ -82,6 +82,15 @@ class UnixCCompiler(CCompiler):
|
2010-01-13 21:25:18 +00:00
|
|
|
if sys.platform == "cygwin":
|
|
|
|
exe_extension = ".exe"
|
|
|
|
|
|
|
|
+ def _fix_lib_args(self, libraries, library_dirs, runtime_library_dirs):
|
|
|
|
+ """Remove standard library path from rpath"""
|
2017-08-30 12:52:53 +00:00
|
|
|
+ libraries, library_dirs, runtime_library_dirs = super()._fix_lib_args(
|
|
|
|
+ libraries, library_dirs, runtime_library_dirs)
|
2010-01-13 21:25:18 +00:00
|
|
|
+ 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)
|
2019-05-07 15:13:12 +00:00
|
|
|
--
|
2019-11-20 09:35:05 +00:00
|
|
|
2.23.0
|
2019-05-07 15:13:12 +00:00
|
|
|
|