]> code.ossystems Code Review - openembedded-core.git/blob
8083345a4e08d7f7622de80f02c240bbfe38c8f9
[openembedded-core.git] /
1 From 4865615a2bc2b78c739e4c33f536712c7f9af061 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/distutils/sysconfig.py | 2 ++
14  Lib/sysconfig.py           | 2 ++
15  2 files changed, 4 insertions(+)
16
17 diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
18 index e07a6c8..6b8c129 100644
19 --- a/Lib/distutils/sysconfig.py
20 +++ b/Lib/distutils/sysconfig.py
21 @@ -421,6 +421,8 @@ def _init_posix():
22          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
30 diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
31 index 9ee4d31..e586abd 100644
32 --- a/Lib/sysconfig.py
33 +++ b/Lib/sysconfig.py
34 @@ -412,6 +412,8 @@ def _init_posix(vars):
35      """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)