summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2010-10-11 14:33:54 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-10-11 22:53:45 +0100
commitb5f744c5d6fea4e5f33545d1dbf40d2f964cb786 (patch)
treea05e7bba4267a69335aa0b3fd57100c164c1ac66 /meta/recipes-devtools
parent6b53fbcc205346be60ea0a8e01c7cb0bbeeba55a (diff)
downloadpoky-b5f744c5d6fea4e5f33545d1dbf40d2f964cb786.tar.gz
python: fix for host contamination issue while cross compiling
This fixes [BUGID #385] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/python/python.inc2
-rw-r--r--meta/recipes-devtools/python/python/06-avoid_usr_lib_termcap_path_in_linking.patch27
-rw-r--r--meta/recipes-devtools/python/python_2.6.5.bb3
3 files changed, 30 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc
index 682bd5a2da..62a6ba1589 100644
--- a/meta/recipes-devtools/python/python.inc
+++ b/meta/recipes-devtools/python/python.inc
@@ -4,7 +4,7 @@ LICENSE = "PSF"
4SECTION = "devel/python" 4SECTION = "devel/python"
5PRIORITY = "optional" 5PRIORITY = "optional"
6# bump this on every change in contrib/python/generate-manifest-2.6.py 6# bump this on every change in contrib/python/generate-manifest-2.6.py
7INC_PR = "ml8" 7INC_PR = "nk0"
8 8
9DEFAULT_PREFERENCE = "-26" 9DEFAULT_PREFERENCE = "-26"
10 10
diff --git a/meta/recipes-devtools/python/python/06-avoid_usr_lib_termcap_path_in_linking.patch b/meta/recipes-devtools/python/python/06-avoid_usr_lib_termcap_path_in_linking.patch
new file mode 100644
index 0000000000..30aa50dd44
--- /dev/null
+++ b/meta/recipes-devtools/python/python/06-avoid_usr_lib_termcap_path_in_linking.patch
@@ -0,0 +1,27 @@
1The poison directories patch has detected library path issue while
2compiling the python in cross environment, as seen bellow.
3
4warning: library search path "/usr/lib/termcap" is unsafe for cross-compilation
5
6This Patch fixes this issue in the python build environment.
711 Oct 2010
8Nitin A Kamble <nitin.a.kamble@intel.com>
9
10Index: Python-2.6.5/setup.py
11===================================================================
12--- Python-2.6.5.orig/setup.py
13+++ Python-2.6.5/setup.py
14@@ -591,12 +591,10 @@ class PyBuildExt(build_ext):
15 readline_libs.append('ncurses')
16 elif self.compiler.find_library_file(lib_dirs, 'curses'):
17 readline_libs.append('curses')
18- elif self.compiler.find_library_file(lib_dirs +
19- ['/usr/lib/termcap'],
20+ elif self.compiler.find_library_file(lib_dirs,
21 'termcap'):
22 readline_libs.append('termcap')
23 exts.append( Extension('readline', ['readline.c'],
24- library_dirs=['/usr/lib/termcap'],
25 extra_link_args=readline_extra_link_args,
26 libraries=readline_libs) )
27 else:
diff --git a/meta/recipes-devtools/python/python_2.6.5.bb b/meta/recipes-devtools/python/python_2.6.5.bb
index 9658fd48dc..674b673f94 100644
--- a/meta/recipes-devtools/python/python_2.6.5.bb
+++ b/meta/recipes-devtools/python/python_2.6.5.bb
@@ -2,7 +2,7 @@ require python.inc
2DEPENDS = "python-native db gdbm openssl readline sqlite3 zlib" 2DEPENDS = "python-native db gdbm openssl readline sqlite3 zlib"
3DEPENDS_sharprom = "python-native db readline zlib gdbm openssl" 3DEPENDS_sharprom = "python-native db readline zlib gdbm openssl"
4# set to .0 on every increase of INC_PR 4# set to .0 on every increase of INC_PR
5PR = "${INC_PR}.2" 5PR = "${INC_PR}.3"
6 6
7SRC_URI = "\ 7SRC_URI = "\
8 http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.bz2 \ 8 http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.bz2 \
@@ -12,6 +12,7 @@ SRC_URI = "\
12 file://03-fix-tkinter-detection.patch \ 12 file://03-fix-tkinter-detection.patch \
13 file://04-default-is-optimized.patch \ 13 file://04-default-is-optimized.patch \
14 file://05-enable-ctypes-cross-build.patch \ 14 file://05-enable-ctypes-cross-build.patch \
15 file://06-avoid_usr_lib_termcap_path_in_linking.patch \
15 file://99-ignore-optimization-flag.patch \ 16 file://99-ignore-optimization-flag.patch \
16 file://sitecustomize.py \ 17 file://sitecustomize.py \
17" 18"