Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.

Patch by David Edelsohn.
This commit is contained in:
Antoine Pitrou 2013-10-19 22:06:26 +02:00
commit e55013febe
2 changed files with 4 additions and 1 deletions

View File

@ -368,7 +368,7 @@ def _generate_posix_vars():
# -- these paths are relative to the Python source, but when installed # -- these paths are relative to the Python source, but when installed
# the scripts are in another directory. # the scripts are in another directory.
if _PYTHON_BUILD: if _PYTHON_BUILD:
vars['LDSHARED'] = vars['BLDSHARED'] vars['BLDSHARED'] = vars['LDSHARED']
# There's a chicken-and-egg situation on OS X with regards to the # There's a chicken-and-egg situation on OS X with regards to the
# _sysconfigdata module after the changes introduced by #15298: # _sysconfigdata module after the changes introduced by #15298:

View File

@ -62,6 +62,9 @@ Core and Builtins
Library Library
------- -------
- Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.
Patch by David Edelsohn.
- Issue #18606: Add the new "statistics" module (PEP 450). Contributed - Issue #18606: Add the new "statistics" module (PEP 450). Contributed
by Steven D'Aprano. by Steven D'Aprano.