summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-19 20:06:26 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-19 20:06:26 (GMT)
commite55013febe5a06f9d5e7c83e1e0b4207e78efb12 (patch)
treeeea47a957f1305d741b9e54ea5ea6b39f3df1706 /Lib
parent3d9e481ece356d805ee5658600ef2888e35a5609 (diff)
parent0abb21884c422d23013ebd0cbd2c37c09d4ea0c5 (diff)
downloadcpython-e55013febe5a06f9d5e7c83e1e0b4207e78efb12.zip
cpython-e55013febe5a06f9d5e7c83e1e0b4207e78efb12.tar.gz
cpython-e55013febe5a06f9d5e7c83e1e0b4207e78efb12.tar.bz2
Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX.
Patch by David Edelsohn.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/sysconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
index efc9a84..776b2f6 100644
--- a/Lib/sysconfig.py
+++ b/Lib/sysconfig.py
@@ -368,7 +368,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: