[issue9545] Adding _collections to static build

2010-08-15 Thread Martin v . Löwis
Martin v. Löwis added the comment: Considering the notice --- Modules/Setup.dist is newer than Modules/Setup; check to make sure you have all the updates you need in your Modules/Setup file. Usually, copying Modules/Setup.dist to Modules/Setup will wo

[issue9545] Adding _collections to static build

2010-08-15 Thread Eli Bendersky
Eli Bendersky added the comment: `make distclean` worked for me (tipped at #python-dev), after it ./configure and make succeeded. I must say it's not 100% intuitive, I'm used to just using `make clean` for a complete cleanup. -- ___ Python tracker

[issue9545] Adding _collections to static build

2010-08-15 Thread Eli Bendersky
Eli Bendersky added the comment: Compiling py3k from main repo doesn't work: ould not find platform dependent libraries Consider setting $PYTHONHOME to [:] Traceback (most recent call last): File "/home/eliben/python_src/eliben-py3k/Lib/site.py", line 540, in main() File "/home/eliben/

[issue9545] Adding _collections to static build

2010-08-15 Thread Nick Coghlan
Nick Coghlan added the comment: On Sun, Aug 15, 2010 at 6:44 PM, Martin v. Löwis wrote: > > Martin v. Löwis added the comment: > > Re msg113792: Nick, running the clean step before configure is not possible. > It requires a Makefile, which isn't there yet. Ah, of course. Still, the fix to ru

[issue9545] Adding _collections to static build

2010-08-15 Thread Martin v . Löwis
Martin v. Löwis added the comment: Re msg113792: Nick, running the clean step before configure is not possible. It requires a Makefile, which isn't there yet. -- ___ Python tracker

[issue9545] Adding _collections to static build

2010-08-14 Thread Senthil Kumaran
Senthil Kumaran added the comment: The reverted patch was reapplied in r83980 by Antoine. The issue9546 resolves the part of always running the cleanup code on compile error. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue9545] Adding _collections to static build

2010-08-13 Thread Nick Coghlan
Nick Coghlan added the comment: Note that the following sequence should work even without changing the buildbot behaviour: - in one checkin, modify Modules/Setup.dist. The buildbots will pick up this change on their *subsequent* build (as the build triggered by this checkin, so long as it com

[issue9545] Adding _collections to static build

2010-08-09 Thread Florent Xicluna
Florent Xicluna added the comment: See report on issue #9546: the "clean" step should remove "Modules/Setup", but it is skipped. -- dependencies: +buildbot: if a compile error occurs, the "clean" step is skipped nosy: +flox ___ Python tracker

[issue9545] Adding _collections to static build

2010-08-09 Thread Senthil Kumaran
Senthil Kumaran added the comment: This is the message from the buildbot failure: Modules/Setup.dist is newer than Modules/Setup; check to make sure you have all the updates you need in your Modules/Setup file. Usually, copying Modules/Setup.dist to Modules/Setup will work. I am not sure, if a

[issue9545] Adding _collections to static build

2010-08-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: Reverted since it broke the buildbots. -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list

[issue9545] Adding _collections to static build

2010-08-09 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in revision 83876. The reverted commit r83875 is re-applied in r83877. -- assignee: -> orsenthil components: +Build nosy: +rhettinger resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2

[issue9545] Adding _collections to static build

2010-08-09 Thread Senthil Kumaran
New submission from Senthil Kumaran : As a fix for issue9396 in r83874, functools was included in re module and this caused a build failure. This was reverted in r83875, with the following message by Raymond: The problem is that the re module is imported by sysconfig and re needs functools whi