diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3/crosspythonpath.patch')
-rw-r--r-- | meta/recipes-devtools/python/python3/crosspythonpath.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-devtools/python/python3/crosspythonpath.patch b/meta/recipes-devtools/python/python3/crosspythonpath.patch deleted file mode 100644 index 2c4aef0511..0000000000 --- a/meta/recipes-devtools/python/python3/crosspythonpath.patch +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | From 5b66463c10fec1440e977d5a21a0167862d6d79c Mon Sep 17 00:00:00 2001 | ||
2 | From: Ricardo Ribalda <ricardo@ribalda.com> | ||
3 | Date: Tue, 18 Nov 2014 03:35:33 -0500 | ||
4 | Subject: [PATCH] configure.ac: add CROSSPYTHONPATH into PYTHONPATH for | ||
5 | PYTHON_FOR_BUILD | ||
6 | |||
7 | When building x86->x86 the system will try to execute .so and related items | ||
8 | from the default PYTHONPATH. This will fail if the target CPU contains | ||
9 | instructions that the host CPU does not have, add CROSSPYTHONPATH | ||
10 | into PYTHONPATH so we can prepend the list to find correct libs. | ||
11 | |||
12 | Upstream-Status: Inappropriate [OE-Core integration specific] | ||
13 | |||
14 | Credits-to: Mark Hatle <mark.hatle@windriver.com> | ||
15 | Credits-to: Jackie Huang <jackie.huang@windriver.com> | ||
16 | Signed-off-by: Ricardo Ribalda <ricardo@ribalda.com> | ||
17 | |||
18 | --- | ||
19 | configure.ac | 2 +- | ||
20 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
21 | |||
22 | diff --git a/configure.ac b/configure.ac | ||
23 | index cb9e198..d81c19a 100644 | ||
24 | --- a/configure.ac | ||
25 | +++ b/configure.ac | ||
26 | @@ -165,7 +165,7 @@ AC_ARG_WITH([build-python], | ||
27 | dnl Build Python interpreter is used for regeneration and freezing. | ||
28 | ac_cv_prog_PYTHON_FOR_REGEN=$with_build_python | ||
29 | PYTHON_FOR_FREEZE="$with_build_python" | ||
30 | - PYTHON_FOR_BUILD='_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) '$with_build_python | ||
31 | + PYTHON_FOR_BUILD='_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(CROSSPYTHONPATH):$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) '$with_build_python | ||
32 | AC_MSG_RESULT([$with_build_python]) | ||
33 | ], [ | ||
34 | AS_VAR_IF([cross_compiling], [yes], | ||