Commit e55013fe authored by Antoine Pitrou's avatar Antoine Pitrou

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

Patch by David Edelsohn.
parents 3d9e481e 0abb2188
......@@ -368,7 +368,7 @@ def _generate_posix_vars():
# -- these paths are relative to the Python source, but when installed
# the scripts are in another directory.
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
# _sysconfigdata module after the changes introduced by #15298:
......
......@@ -62,6 +62,9 @@ Core and Builtins
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
by Steven D'Aprano.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment