summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python3')
-rw-r--r--meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch b/meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch
deleted file mode 100644
index 45a37ed1a9..0000000000
--- a/meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From 9c6b9f46179c8f9c9391767e2b02f268a1ee7a9c Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Thu, 31 Jan 2019 16:46:30 +0100
4Subject: [PATCH] distutils/sysconfig: append
5 STAGING_LIBDIR/python-sysconfigdata to sys.path
6
7So that target configuration can be used when running native python
8
9Upstream-Status: Inappropriate [oe-core specific]
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11
12---
13 Lib/sysconfig.py | 2 ++
14 1 file changed, 2 insertions(+)
15
16diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
17index ff399e2..95844cf 100644
18--- a/Lib/sysconfig.py
19+++ b/Lib/sysconfig.py
20@@ -528,6 +528,8 @@ def _init_posix(vars):
21 """Initialize the module as appropriate for POSIX systems."""
22 # _sysconfigdata is generated at build time, see _generate_posix_vars()
23 name = _get_sysconfigdata_name()
24+ if 'STAGING_LIBDIR' in os.environ:
25+ sys.path.append(os.environ['STAGING_LIBDIR']+'/python-sysconfigdata')
26 _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
27 build_time_vars = _temp.build_time_vars
28 vars.update(build_time_vars)