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 nascheme
Recipients nascheme, theller
Date 2009-02-06.00:45:40
SpamBayes Score 0.0006750774
Marked as misclassified No
Message-id <1233881144.37.0.958366280661.issue5161@psf.upfronthosting.co.za>
In-reply-to
Content
The following code was added to Makefile.pre.in when ctypes was merged:

    find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
    find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true

If Python is compiled in a directory other than the source directory
than $(srcdir)/build does not exist and these commands don't work as
intended.  I think that proper path would be simply "build".
History
Date User Action Args
2009-02-06 00:45:44naschemesetrecipients: + nascheme, theller
2009-02-06 00:45:44naschemesetmessageid: <1233881144.37.0.958366280661.issue5161@psf.upfronthosting.co.za>
2009-02-06 00:45:41naschemelinkissue5161 messages
2009-02-06 00:45:40naschemecreate