blob: 2b68c0acc217b5d1eccd79a1c5edbd569f932c59 [file] [log] [blame]
Andrew Geissler4ed12e12020-06-05 18:00:41 -05001From bc59d49efff41051034d7fbf5d0c8505e4c3134b Mon Sep 17 00:00:00 2001
Brad Bishop19323692019-04-05 15:28:33 -04002From: 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/distutils/sysconfig.py | 2 ++
14 Lib/sysconfig.py | 2 ++
15 2 files changed, 4 insertions(+)
16
17diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
Andrew Geissler82c905d2020-04-13 13:39:40 -050018index b51629e..2df348c 100644
Brad Bishop19323692019-04-05 15:28:33 -040019--- a/Lib/distutils/sysconfig.py
20+++ b/Lib/distutils/sysconfig.py
Andrew Geissler82c905d2020-04-13 13:39:40 -050021@@ -438,6 +438,8 @@ def _init_posix():
Brad Bishop19323692019-04-05 15:28:33 -040022 platform=sys.platform,
23 multiarch=getattr(sys.implementation, '_multiarch', ''),
24 ))
25+ if 'STAGING_LIBDIR' in os.environ:
26+ sys.path.append(os.environ['STAGING_LIBDIR']+'/python-sysconfigdata')
27 _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
28 build_time_vars = _temp.build_time_vars
29 global _config_vars
30diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
Andrew Geissler82c905d2020-04-13 13:39:40 -050031index b2d790b..405273c 100644
Brad Bishop19323692019-04-05 15:28:33 -040032--- a/Lib/sysconfig.py
33+++ b/Lib/sysconfig.py
Brad Bishopf3f93bb2019-10-16 14:33:32 -040034@@ -419,6 +419,8 @@ def _init_posix(vars):
Brad Bishop19323692019-04-05 15:28:33 -040035 """Initialize the module as appropriate for POSIX systems."""
36 # _sysconfigdata is generated at build time, see _generate_posix_vars()
37 name = _get_sysconfigdata_name()
38+ if 'STAGING_LIBDIR' in os.environ:
39+ sys.path.append(os.environ['STAGING_LIBDIR']+'/python-sysconfigdata')
40 _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
41 build_time_vars = _temp.build_time_vars
42 vars.update(build_time_vars)