summaryrefslogtreecommitdiff
path: root/lang/python27/files/patch-Lib__distutils__unixccompiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python27/files/patch-Lib__distutils__unixccompiler.py')
-rw-r--r--lang/python27/files/patch-Lib__distutils__unixccompiler.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/python27/files/patch-Lib__distutils__unixccompiler.py b/lang/python27/files/patch-Lib__distutils__unixccompiler.py
deleted file mode 100644
index ddaa4bed2316..000000000000
--- a/lang/python27/files/patch-Lib__distutils__unixccompiler.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# Description: Some python extensions can't be compiled with clang 3.4
-# Issue ID: http://bugs.python.org/issue20767
-# Submitted by: antoine
-
---- ./Lib/distutils/unixccompiler.py.orig 2013-11-10 07:36:40.000000000 +0000
-+++ ./Lib/distutils/unixccompiler.py 2014-02-19 15:41:48.000000000 +0000
-@@ -228,6 +228,8 @@ class UnixCCompiler(CCompiler):
- if sys.platform[:6] == "darwin":
- # MacOSX's linker doesn't understand the -R flag at all
- return "-L" + dir
-+ elif sys.platform[:7] == "freebsd":
-+ return "-Wl,-rpath=" + dir
- elif sys.platform[:5] == "hp-ux":
- if self._is_gcc(compiler):
- return ["-Wl,+s", "-L" + dir]