(original) (raw)
changeset: 86493:e3ac917fcf9c parent: 86491:35b384ed594b parent: 86492:c554194240fc user: Antoine Pitrou solipsis@pitrou.net date: Sat Oct 19 22:06:26 2013 +0200 files: Lib/sysconfig.py Misc/NEWS description: Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX. Patch by David Edelsohn. diff -r 35b384ed594b -r e3ac917fcf9c Lib/sysconfig.py --- a/Lib/sysconfig.py Sat Oct 19 16:01:13 2013 -0400 +++ b/Lib/sysconfig.py Sat Oct 19 22:06:26 2013 +0200 @@ -368,7 +368,7 @@ # -- 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 -r 35b384ed594b -r e3ac917fcf9c Misc/NEWS --- a/Misc/NEWS Sat Oct 19 16:01:13 2013 -0400 +++ b/Misc/NEWS Sat Oct 19 22:06:26 2013 +0200 @@ -62,6 +62,9 @@ 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. /solipsis@pitrou.net