summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python-native/debug.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python-native/debug.patch')
-rw-r--r--meta/recipes-devtools/python/python-native/debug.patch19
1 files changed, 12 insertions, 7 deletions
diff --git a/meta/recipes-devtools/python/python-native/debug.patch b/meta/recipes-devtools/python/python-native/debug.patch
index 5ec10d6b20..c2b20e0a6e 100644
--- a/meta/recipes-devtools/python/python-native/debug.patch
+++ b/meta/recipes-devtools/python/python-native/debug.patch
@@ -1,24 +1,29 @@
1Upstream-Status: Pending 1Upstream-Status: Pending
2 2
3Index: Python-2.6.1/Lib/distutils/unixccompiler.py 3Rebased for python-2.7.12
4Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com>
5Index: Python-2.7.12/Lib/distutils/unixccompiler.py
4=================================================================== 6===================================================================
5--- Python-2.6.1.orig/Lib/distutils/unixccompiler.py 2009-11-13 16:04:54.000000000 +0000 7--- Python-2.7.12.orig/Lib/distutils/unixccompiler.py
6+++ Python-2.6.1/Lib/distutils/unixccompiler.py 2009-11-13 16:06:27.000000000 +0000 8+++ Python-2.7.12/Lib/distutils/unixccompiler.py
7@@ -300,6 +300,8 @@ 9@@ -278,6 +278,8 @@ class UnixCCompiler(CCompiler):
8 dylib_f = self.library_filename(lib, lib_type='dylib') 10
9 static_f = self.library_filename(lib, lib_type='static') 11
10 12
11+ print "Looking in %s for %s" % (lib, dirs) 13+ print "Looking in %s for %s" % (lib, dirs)
12+ 14+
13 for dir in dirs: 15 for dir in dirs:
14 shared = os.path.join(dir, shared_f) 16 shared = os.path.join(dir, shared_f)
15 dylib = os.path.join(dir, dylib_f) 17 dylib = os.path.join(dir, dylib_f)
16@@ -309,10 +311,13 @@ 18@@ -298,12 +300,16 @@ class UnixCCompiler(CCompiler):
17 # assuming that *all* Unix C compilers do. And of course I'm 19 # assuming that *all* Unix C compilers do. And of course I'm
18 # ignoring even GCC's "-static" option. So sue me. 20 # ignoring even GCC's "-static" option. So sue me.
19 if os.path.exists(dylib): 21 if os.path.exists(dylib):
20+ print "Found %s" % (dylib) 22+ print "Found %s" % (dylib)
21 return dylib 23 return dylib
24 elif os.path.exists(xcode_stub):
25+ print "Found %s" % (xcode_stub)
26 return xcode_stub
22 elif os.path.exists(shared): 27 elif os.path.exists(shared):
23+ print "Found %s" % (shared) 28+ print "Found %s" % (shared)
24 return shared 29 return shared