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 speno
Recipients akitada, rpetrov, skip.montanaro, speno, tarek
Date 2009-08-21.21:48:20
SpamBayes Score 0.00081670214
Marked as misclassified No
Message-id <1250891302.37.0.393876355832.issue4010@psf.upfronthosting.co.za>
In-reply-to
Content
Furthermore, there's another bug in setup.py  When extensions are built 
and CPPFLAGS (or other arguments) has multiple arguments, the order of 
the arguments are reversed. This is the wrong behavior. The specified 
directories should be used in the given order.

For example, if CPPFLAGS="-I/one -I/two -I/three", then when an 
extention is build, the order of the compile would be:

cc -I/three -I/two -I/one ...

There's this bit that seems reponsible in setup.py:

                    for directory in reversed(options.dirs):
                        add_dir_to_list(dir_list, directory)
History
Date User Action Args
2009-08-21 21:48:22spenosetrecipients: + speno, skip.montanaro, tarek, rpetrov, akitada
2009-08-21 21:48:22spenosetmessageid: <1250891302.37.0.393876355832.issue4010@psf.upfronthosting.co.za>
2009-08-21 21:48:21spenolinkissue4010 messages
2009-08-21 21:48:20spenocreate