mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.
Patch by David Edelsohn.
This commit is contained in:
parent
0e071c967c
commit
0abb21884c
2 changed files with 4 additions and 1 deletions
|
@ -388,7 +388,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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue