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 David.Edelsohn
Recipients David.Edelsohn, eric.araujo
Date 2013-06-22.00:35:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371861337.4.0.488479329759.issue18235@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like someone already tried to fix part of this, but reversed the assignment

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:


BLDSHARED is relative to srcdir and LDSHARED is relative to the install directory BINLIBDEST.

LDSHARED=       $(BINLIBDEST)/config/ld_so_aix $(CC) -bI:$(BINLIBDEST)/config/python.exp $(PY_LDFLAGS)
BLDSHARED=      $(srcdir)/Modules/ld_so_aix $(CC) -bI:$(srcdir)/Modules/python.exp $(PY_LDFLAGS)
History
Date User Action Args
2013-06-22 00:35:37David.Edelsohnsetrecipients: + David.Edelsohn, eric.araujo
2013-06-22 00:35:37David.Edelsohnsetmessageid: <1371861337.4.0.488479329759.issue18235@psf.upfronthosting.co.za>
2013-06-22 00:35:37David.Edelsohnlinkissue18235 messages
2013-06-22 00:35:36David.Edelsohncreate