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 ronaldoussoren
Recipients ronaldoussoren
Date 2013-06-18.13:13:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371561186.46.0.280107378589.issue18255@psf.upfronthosting.co.za>
In-reply-to
Content
While working on a fix for #18211 I noticed two problems with the setup.py that's used to build the stdlib extensions.

1) setup.py uses sysconfig instead of distutils.sysconfig. The sematics of the two modules a slighty different.

2) The block of code starting with the this text is not necessary because distutils.sysconfig (which is used by the build_ext command) already does the right thing for environment variables:


        # When you run "make CC=altcc" or something similar, you really want
        # those environment variables passed into the setup.py phase.  Here's
        # a small set of useful ones.
History
Date User Action Args
2013-06-18 13:13:06ronaldoussorensetrecipients: + ronaldoussoren
2013-06-18 13:13:06ronaldoussorensetmessageid: <1371561186.46.0.280107378589.issue18255@psf.upfronthosting.co.za>
2013-06-18 13:13:06ronaldoussorenlinkissue18255 messages
2013-06-18 13:13:06ronaldoussorencreate