[issue9545] Adding _collections to static build

2010-08-15 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de 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 rep...@bugs.python.org

[issue9545] Adding _collections to static build

2010-08-15 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: On Sun, Aug 15, 2010 at 6:44 PM, Martin v. Löwis rep...@bugs.python.org wrote: Martin v. Löwis mar...@v.loewis.de added the comment: Re msg113792: Nick, running the clean step before configure is not possible. It requires a Makefile, which

[issue9545] Adding _collections to static build

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

[issue9545] Adding _collections to static build

2010-08-15 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com 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. --

[issue9545] Adding _collections to static build

2010-08-15 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de 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

[issue9545] Adding _collections to static build

2010-08-14 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com 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 ___

[issue9545] Adding _collections to static build

2010-08-13 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com 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,

[issue9545] Adding _collections to static build

2010-08-09 Thread Senthil Kumaran
New submission from Senthil Kumaran orsent...@gmail.com: 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

[issue9545] Adding _collections to static build

2010-08-09 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com 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

[issue9545] Adding _collections to static build

2010-08-09 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Reverted since it broke the buildbots. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9545 ___

[issue9545] Adding _collections to static build

2010-08-09 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com 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.

[issue9545] Adding _collections to static build

2010-08-09 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com 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 ___