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 tarek
Recipients scoder, tarek
Date 2009-06-29.09:55:31
SpamBayes Score 4.111022e-09
Marked as misclassified No
Message-id <1246269337.35.0.480828494642.issue6365@psf.upfronthosting.co.za>
In-reply-to
Content
I figured out the problem after writing the test. This is not a problem
on distutils side but on setuptools side. If you remove setuptools from
lxml setup.py, it'll work perfectly.

setuptools patches distutils's build_ext and remove temporarely the
inplace option, so the code on distutils side that goes with the inplace
option is not called...

extract from setuptools.

{{{
    def run(self):
        """Build extensions in build directory, then copy if --inplace"""
        old_inplace, self.inplace = self.inplace, 0
        _build_ext.run(self)
        self.inplace = old_inplace
        if old_inplace:
            self.copy_extensions_to_source()

}}}

So this problem should be fixed on setuptools side.
History
Date User Action Args
2009-06-29 10:13:50tarekunlinkissue6365 messages
2009-06-29 09:55:37tareksetrecipients: + tarek, scoder
2009-06-29 09:55:37tareksetmessageid: <1246269337.35.0.480828494642.issue6365@psf.upfronthosting.co.za>
2009-06-29 09:55:31tareklinkissue6365 messages
2009-06-29 09:55:31tarekcreate