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

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


http://hg.python.org/cpython/rev/e3ac917fcf9c
changeset:   86493:e3ac917fcf9c
parent:      86491:35b384ed594b
parent:      86492:c554194240fc
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Oct 19 22:06:26 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
@@ -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 --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.
 

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


More information about the Python-checkins mailing list