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 ned.deily
Recipients MajeedArni, eryksun, ned.deily, python-dev, r.david.murray, steve.dower, tim.golden, yselivanov, zach.ware
Date 2015-05-27.17:35:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432748140.0.0.185515587539.issue24244@psf.upfronthosting.co.za>
In-reply-to
Content
> Note that when I run into build problems after an update, I generally
> run 'make distclean' and then redo the configure/make.

Yes, but I believe that won't help with changed Modules/Setup* files and, because it is needed in the core interpreter executable, timemodule.c is supposed to be built using Setup and not setup.py.  Setup and Setup.local are designed to be locally modified and thus not revision controlled nor cleaned by make clean:

$ cat Modules/Setup.dist
# The file Setup is used by the makesetup script to construct the files
# Makefile and config.c, from Makefile.pre and config.c.in,
# respectively.  The file Setup itself is initially copied from
# Setup.dist; once it exists it will not be overwritten, so you can edit
# Setup to your heart's content.  Note that Makefile.pre is created
# from Makefile.pre.in by the toplevel configure script.
[...]
$ hg stat --all Modules
I Modules/Setup
I Modules/Setup.config
I Modules/Setup.local
History
Date User Action Args
2015-05-27 17:35:40ned.deilysetrecipients: + ned.deily, tim.golden, r.david.murray, python-dev, zach.ware, yselivanov, eryksun, steve.dower, MajeedArni
2015-05-27 17:35:40ned.deilysetmessageid: <1432748140.0.0.185515587539.issue24244@psf.upfronthosting.co.za>
2015-05-27 17:35:39ned.deilylinkissue24244 messages
2015-05-27 17:35:39ned.deilycreate