Skip to content

Commit 0abb218

Browse files
committed
Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.
Patch by David Edelsohn.
1 parent 0e071c9 commit 0abb218

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Lib/sysconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def _generate_posix_vars():
388388
# -- these paths are relative to the Python source, but when installed
389389
# the scripts are in another directory.
390390
if _PYTHON_BUILD:
391-
vars['LDSHARED'] = vars['BLDSHARED']
391+
vars['BLDSHARED'] = vars['LDSHARED']
392392

393393
# There's a chicken-and-egg situation on OS X with regards to the
394394
# _sysconfigdata module after the changes introduced by #15298:

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ Core and Builtins
7878
Library
7979
-------
8080

81+
- Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.
82+
Patch by David Edelsohn.
83+
8184
- Issue #19276: Fixed the wave module on 64-bit big-endian platforms.
8285

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

0 commit comments

Comments
 (0)