diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3/host_include_contamination.patch')
| -rw-r--r-- | meta/recipes-devtools/python/python3/host_include_contamination.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-devtools/python/python3/host_include_contamination.patch b/meta/recipes-devtools/python/python3/host_include_contamination.patch deleted file mode 100644 index ef2054d9a9..0000000000 --- a/meta/recipes-devtools/python/python3/host_include_contamination.patch +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | when building python for qemux86-64 on ubuntu 11.10/64bit | ||
| 2 | it gropes into host includes and then mixes them with cross | ||
| 3 | includes and as a result some modules fail to compile and link | ||
| 4 | one of the modules is python-elementtree which is then not | ||
| 5 | found during image creation | ||
| 6 | |||
| 7 | Proble is that setup.py tries to add native includes that newer | ||
| 8 | ubuntu has introduced for multiarch support. But that should | ||
| 9 | only happen for native builds and not cross building python | ||
| 10 | so we add a check here. | ||
| 11 | |||
| 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 13 | Upstream-Status: Pending | ||
| 14 | |||
| 15 | Index: Python-3.3.0rc2/setup.py | ||
| 16 | =================================================================== | ||
| 17 | --- Python-3.3.0rc2.orig/setup.py 2012-09-20 21:54:50.000000000 -0700 | ||
| 18 | +++ Python-3.3.0rc2/setup.py 2012-09-20 21:57:35.029123858 -0700 | ||
| 19 | @@ -402,6 +402,9 @@ | ||
| 20 | |||
| 21 | if not find_executable('dpkg-architecture'): | ||
| 22 | return | ||
| 23 | + if cross_compiling: | ||
| 24 | + return | ||
| 25 | + | ||
| 26 | opt = '' | ||
| 27 | if cross_compiling: | ||
| 28 | opt = '-t' + sysconfig.get_config_var('HOST_GNU_TYPE') | ||
