blob: 3150187951d1f58e28bc404a0ad80730463a54a8 [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001From 1ff575308248b183639c8cb14afee7c8572bd2b8 Mon Sep 17 00:00:00 2001
Andrew Geisslereff27472021-10-29 15:35:00 -05002From: Tim Orling <timothy.t.orling@intel.com>
3Date: Wed, 20 Oct 2021 17:38:10 +0000
4Subject: [PATCH] _distutils/sysconfig: append
5 STAGING_LIBDIR/python-sysconfigdata to sys.path
6
7When python modules set SETUPTOOLS_USE_DISTULS='local', this uses the
8vendored _distutils in setuptools rather than distutils in the Standard
9Library. This is needed so that target configuration can be used with
10python3-setuptools-native.
11
12Based on python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch
13from Alex Kanavin <alex.kanavin@gmail.com>
14
15Upstream-Status: Inappropriate [oe-specific]
16
17Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
Andrew Geissler595f6302022-01-24 19:11:47 +000018
Andrew Geisslereff27472021-10-29 15:35:00 -050019---
20 setuptools/_distutils/sysconfig.py | 2 ++
21 1 file changed, 2 insertions(+)
22
23diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py
Andrew Geissler595f6302022-01-24 19:11:47 +000024index d36d94f..616eb91 100644
Andrew Geisslereff27472021-10-29 15:35:00 -050025--- a/setuptools/_distutils/sysconfig.py
26+++ b/setuptools/_distutils/sysconfig.py
Andrew Geissler595f6302022-01-24 19:11:47 +000027@@ -484,6 +484,8 @@ def _init_posix():
28 multiarch=getattr(sys.implementation, '_multiarch', ''),
29 ),
30 )
Andrew Geisslereff27472021-10-29 15:35:00 -050031+ if 'STAGING_LIBDIR' in os.environ:
32+ sys.path.append(os.environ['STAGING_LIBDIR']+'/python-sysconfigdata')
33 try:
34 _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
35 except ImportError: