]> code.ossystems Code Review - openembedded-core.git/blob
b323ed4dd0a0cf2c516dcdb8ac25715b9c580dfb
[openembedded-core.git] /
1 From 3a98c2eab187289dc8c55e36738c2c0f4216d906 Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex.kanavin@gmail.com>
3 Date: Thu, 31 Jan 2019 16:46:30 +0100
4 Subject: [PATCH] distutils/sysconfig: append
5  STAGING_LIBDIR/python-sysconfigdata to sys.path
6
7 So that target configuration can be used when running native python
8
9 Upstream-Status: Inappropriate [oe-core specific]
10 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11
12 ---
13  Lib/sysconfig.py | 2 ++
14  1 file changed, 2 insertions(+)
15
16 diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
17 index a78c0b1..f5c5efe 100644
18 --- a/Lib/sysconfig.py
19 +++ b/Lib/sysconfig.py
20 @@ -474,6 +474,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)