summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python-native/debug.patch
diff options
context:
space:
mode:
authorMax Tomago <max.tomago@codethink.co.uk>2019-10-15 17:37:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-10-19 23:18:34 +0100
commitf484aa6090c5fa3f69c3aed0cab154ed1f46b7ac (patch)
treeac80ef043bc4060f6c79836f88fe36e537d60e08 /meta/recipes-devtools/python/python-native/debug.patch
parentc16d1ff13f15246accce20425e174050b26efae6 (diff)
downloadpoky-f484aa6090c5fa3f69c3aed0cab154ed1f46b7ac.tar.gz
python-native: Remove debug.patch
It doesn't look like it should be there. (From OE-Core rev: bdc62e2845fc242cf0778623690fadcb8da731d4) Signed-off-by: Max Tomago <max.tomago@codethink.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python-native/debug.patch')
-rw-r--r--meta/recipes-devtools/python/python-native/debug.patch32
1 files changed, 0 insertions, 32 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'