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, larry, pitrou, python-dev
Date 2013-10-22.04:18:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382415536.53.0.0953638217451.issue18235@psf.upfronthosting.co.za>
In-reply-to
Content
I think I see the source of the confusion. test_distutils fails because it runs in the build tree and without files installed. The test does not use the installed version of sysconfig, so it looks for ./Modules/ld_so_aix, which fails. The kludge from 2000 was trying to make the test work. But after installation, the kludge defines variables incorrectly to build Modules after Python is installed.

Because the distutils test is testing in tree and not the installed version of Python, it is not testing what the end user will experience. I am unsure about the best way to make the test pass.
History
Date User Action Args
2013-10-22 04:18:56David.Edelsohnsetrecipients: + David.Edelsohn, pitrou, larry, eric.araujo, python-dev
2013-10-22 04:18:56David.Edelsohnsetmessageid: <1382415536.53.0.0953638217451.issue18235@psf.upfronthosting.co.za>
2013-10-22 04:18:56David.Edelsohnlinkissue18235 messages
2013-10-22 04:18:56David.Edelsohncreate