[issue13157] Build Python outside the source directory

2013-01-02 Thread STINNER Victor
STINNER Victor added the comment: I don't have this issue anymore (but I also don't build Python outside the source directory anymore), I already applied my patch, so I consider that the issue can be closed. If someone has a similar problem, it's maybe better to open a new issue. -- r

[issue13157] Build Python outside the source directory

2011-10-14 Thread Éric Araujo
Éric Araujo added the comment: Building outside of the source directory was supported, if the source directory was clean. In practice, the source directory could be unclean as long as a few files were not there (Parser/*.o, Modules/_testembed), so it was quite annoying. If the patch allows

[issue13157] Build Python outside the source directory

2011-10-12 Thread Roumen Petrov
Roumen Petrov added the comment: I wonder why you are not stopped by: configure: error: source directory already configured; run "make distclean" there first. (for sure you remove some files but not all) Applied patch is save but I cannot understand what actually is resolved. Note that someone

[issue13157] Build Python outside the source directory

2011-10-12 Thread STINNER Victor
STINNER Victor added the comment: > Which is platform with broken VPATH support and/or make ? Well, my commit is maybe useless... I tried to have two builds at the same time: - debug in Python source code (e.g. ~/python) - release in a subdirectory in the Python source code (e.g. ~/python/rel

[issue13157] Build Python outside the source directory

2011-10-12 Thread Roumen Petrov
Roumen Petrov added the comment: Which is platform with broken VPATH support and/or make ? -- nosy: +rpetrov ___ Python tracker ___ _

[issue13157] Build Python outside the source directory

2011-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1811c4e5527f by Victor Stinner in branch 'default': Issue #13157: Fix building Python outside its source tree http://hg.python.org/cpython/rev/1811c4e5527f -- nosy: +python-dev ___ Python tracker

[issue13157] Build Python outside the source directory

2011-10-12 Thread STINNER Victor
Changes by STINNER Victor : -- components: +Build ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue13157] Build Python outside the source directory

2011-10-12 Thread STINNER Victor
New submission from STINNER Victor : It is no more possible to build Python outside its source directory. Try using: cd mkdir release cd release ../configure make Attached patch should fix this issue. -- files: build.patch keywords: patch messages: 145392 nosy: haypo, loewis, neologix