From: Antoine Pitrou Date: Sat, 19 Oct 2013 20:05:05 +0000 (+0200) Subject: Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX. X-Git-Tag: v3.4.0a4~15^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0abb21884c422d23013ebd0cbd2c37c09d4ea0c5;p=python Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX. Patch by David Edelsohn. --- diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 2f5f7404ff..2a2160cc0d 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -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: diff --git a/Misc/NEWS b/Misc/NEWS index c2f584ffc0..efe7cb83d3 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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