summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/python/python-native/debug.patch32
-rw-r--r--meta/recipes-devtools/python/python-native_2.7.16.bb1
2 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-devtools/python/python-native/debug.patch b/meta/recipes-devtools/python/python-native/debug.patch
deleted file mode 100644
index 3617882640..0000000000
--- a/meta/recipes-devtools/python/python-native/debug.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1Upstream-Status: Pending
2
3Index: Python-2.7.12/Lib/distutils/unixccompiler.py
4===================================================================
5--- Python-2.7.12.orig/Lib/distutils/unixccompiler.py
6+++ Python-2.7.12/Lib/distutils/unixccompiler.py
7@@ -278,6 +278,8 @@ class UnixCCompiler(CCompiler):
8
9
10
11+ print "Looking in %s for %s" % (lib, dirs)
12+
13 for dir in dirs:
14 shared = os.path.join(dir, shared_f)
15 dylib = os.path.join(dir, dylib_f)
16@@ -298,12 +300,16 @@ class UnixCCompiler(CCompiler):
17 # assuming that *all* Unix C compilers do. And of course I'm
18 # ignoring even GCC's "-static" option. So sue me.
19 if os.path.exists(dylib):
20+ print "Found %s" % (dylib)
21 return dylib
22 elif os.path.exists(xcode_stub):
23+ print "Found %s" % (xcode_stub)
24 return xcode_stub
25 elif os.path.exists(shared):
26+ print "Found %s" % (shared)
27 return shared
28 elif os.path.exists(static):
29+ print "Found %s" % (static)
30 return static
31
32 # Oops, didn't find it in *any* of 'dirs'
diff --git a/meta/recipes-devtools/python/python-native_2.7.16.bb b/meta/recipes-devtools/python/python-native_2.7.16.bb
index b7442800d9..90103af8be 100644
--- a/meta/recipes-devtools/python/python-native_2.7.16.bb
+++ b/meta/recipes-devtools/python/python-native_2.7.16.bb
@@ -7,7 +7,6 @@ SRC_URI += "\
7 file://10-distutils-fix-swig-parameter.patch \ 7 file://10-distutils-fix-swig-parameter.patch \
8 file://11-distutils-never-modify-shebang-line.patch \ 8 file://11-distutils-never-modify-shebang-line.patch \
9 file://0001-distutils-set-the-prefix-to-be-inside-staging-direct.patch \ 9 file://0001-distutils-set-the-prefix-to-be-inside-staging-direct.patch \
10 file://debug.patch \
11 file://unixccompiler.patch \ 10 file://unixccompiler.patch \
12 file://nohostlibs.patch \ 11 file://nohostlibs.patch \
13 file://multilib.patch \ 12 file://multilib.patch \