diff options
Diffstat (limited to 'package/python3/python3-008-distutils-sysconfig-use-sysconfigdata.patch')
-rw-r--r-- | package/python3/python3-008-distutils-sysconfig-use-sysconfigdata.patch | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/package/python3/python3-008-distutils-sysconfig-use-sysconfigdata.patch b/package/python3/python3-008-distutils-sysconfig-use-sysconfigdata.patch index c77fed3f36..d0758b15e6 100644 --- a/package/python3/python3-008-distutils-sysconfig-use-sysconfigdata.patch +++ b/package/python3/python3-008-distutils-sysconfig-use-sysconfigdata.patch @@ -2,10 +2,11 @@ Index: b/Lib/distutils/sysconfig.py =================================================================== --- a/Lib/distutils/sysconfig.py +++ b/Lib/distutils/sysconfig.py -@@ -430,49 +430,11 @@ +@@ -423,40 +423,11 @@ + _config_vars = None def _init_posix(): - """Initialize the module as appropriate for POSIX systems.""" +- """Initialize the module as appropriate for POSIX systems.""" - g = {} - # load the installed Makefile: - try: @@ -36,23 +37,13 @@ Index: b/Lib/distutils/sysconfig.py - if python_build: - g['LDSHARED'] = g['BLDSHARED'] - -- elif get_python_version() < '2.1': -- # The following two branches are for 1.5.2 compatibility. -- if sys.platform == 'aix4': # what about AIX 3.x ? -- # Linker script is in the config directory, not in Modules as the -- # Makefile says. -- python_lib = get_python_lib(standard_lib=1) -- ld_so_aix = os.path.join(python_lib, 'config', 'ld_so_aix') -- python_exp = os.path.join(python_lib, 'config', 'python.exp') -- -- g['LDSHARED'] = "%s %s -bI:%s" % (ld_so_aix, g['CC'], python_exp) -- + # _sysconfigdata is generated at build time, see the sysconfig module + from _sysconfigdata import build_time_vars global _config_vars - _config_vars = g +- + _config_vars = {} + _config_vars.update(build_time_vars) - def _init_nt(): + """Initialize the module as appropriate for NT""" |