Skip to content

Commit

Permalink
Issue python#18235: Fix the sysconfig variables LDSHARED and BLDSHARE…
Browse files Browse the repository at this point in the history
…D under AIX.

Patch by David Edelsohn.
  • Loading branch information
pitrou committed Oct 19, 2013
1 parent 0e071c9 commit 0abb218
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/sysconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ Core and Builtins
Library
-------

- Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.
Patch by David Edelsohn.

- Issue #19276: Fixed the wave module on 64-bit big-endian platforms.

- Issue #18776: atexit callbacks now display their full traceback when they
Expand Down

0 comments on commit 0abb218

Please sign in to comment.