summaryrefslogtreecommitdiff
path: root/Lib/sysconfig.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-19 22:05:05 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-19 22:05:05 +0200
commitc50db66c6b75ff38d693b2dc06b1c84eb4d795a6 (patch)
tree6bbab9e8587a829ff99aaf7095222678508693fb /Lib/sysconfig.py
parentc8fbde605fd2dee87399f73982b8ec63038007ea (diff)
downloadcpython-c50db66c6b75ff38d693b2dc06b1c84eb4d795a6.tar.gz
Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.
Patch by David Edelsohn.
Diffstat (limited to 'Lib/sysconfig.py')
-rw-r--r--Lib/sysconfig.py2
1 files changed, 1 insertions, 1 deletions
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: