This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lemburg
Recipients David.Edelsohn, Michael.Felt, aixtools@gmail.com, eric.araujo, ericvw, haubi, larry, lemburg, martin.panter, pelson, pitrou, python-dev
Date 2017-01-24.10:28:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485253724.26.0.710798196147.issue18235@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm, looking at the patch again:

diff -r a089a8b1f93d Lib/sysconfig.py
--- a/Lib/sysconfig.py  Fri Jun 21 18:37:02 2013 -0400
+++ b/Lib/sysconfig.py  Fri Jun 21 22:33:15 2013 -0700
@@ -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:

I think that with the configure fix, the special case for AIX can be dropped altogether. It just polishes over the bug in configure, turning a relative path into an absolute one.
History
Date User Action Args
2017-01-24 10:28:44lemburgsetrecipients: + lemburg, pitrou, larry, eric.araujo, ericvw, haubi, python-dev, martin.panter, pelson, David.Edelsohn, Michael.Felt, aixtools@gmail.com
2017-01-24 10:28:44lemburgsetmessageid: <1485253724.26.0.710798196147.issue18235@psf.upfronthosting.co.za>
2017-01-24 10:28:44lemburglinkissue18235 messages
2017-01-24 10:28:44lemburgcreate