(original) (raw)

changeset: 86492:c554194240fc branch: 3.3 parent: 86486:73ab6aba24e5 user: Antoine Pitrou solipsis@pitrou.net date: Sat Oct 19 22:05:05 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 73ab6aba24e5 -r c554194240fc Lib/sysconfig.py --- a/Lib/sysconfig.py Sat Oct 19 21:14:57 2013 +0300 +++ b/Lib/sysconfig.py Sat Oct 19 22:05:05 2013 +0200 @@ -388,7 +388,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 73ab6aba24e5 -r c554194240fc Misc/NEWS --- a/Misc/NEWS Sat Oct 19 21:14:57 2013 +0300 +++ b/Misc/NEWS Sat Oct 19 22:05:05 2013 +0200 @@ -78,6 +78,9 @@ 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 /solipsis@pitrou.net