[Python-checkins] cpython (3.3): Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.

antoine.pitrou python-checkins at python.org
Sat Oct 19 22:07:55 CEST 2013


http://hg.python.org/cpython/rev/c554194240fc
changeset:   86492:c554194240fc
branch:      3.3
parent:      86486:73ab6aba24e5
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Oct 19 22:05:05 2013 +0200
summary:
  Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.
Patch by David Edelsohn.

files:
  Lib/sysconfig.py |  2 +-
  Misc/NEWS        |  3 +++
  2 files changed, 4 insertions(+), 1 deletions(-)


diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
--- a/Lib/sysconfig.py
+++ b/Lib/sysconfig.py
@@ -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 --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list