diff options
author | Max Tomago <max.tomago@codethink.co.uk> | 2019-10-15 17:37:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-19 23:18:34 +0100 |
commit | f484aa6090c5fa3f69c3aed0cab154ed1f46b7ac (patch) | |
tree | ac80ef043bc4060f6c79836f88fe36e537d60e08 | |
parent | c16d1ff13f15246accce20425e174050b26efae6 (diff) | |
download | poky-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>
-rw-r--r-- | meta/recipes-devtools/python/python-native/debug.patch | 32 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python-native_2.7.16.bb | 1 |
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 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Index: 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 \ |