[issue4151] Separate build dir broken

2010-09-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: For the record, I’m not clear about what is fixed or not in each branch. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4151 ___

[issue4151] Separate build dir broken

2010-08-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I think so too. -- assignee: nascheme - mwh nosy: +mwh resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4151

[issue4151] Separate build dir broken

2010-06-28 Thread Neil Schemenauer
Neil Schemenauer nas-pyt...@arctrix.com added the comment: I believe the latest problem reported has been fixed by SVN rev 80649. -- assignee: - nascheme nosy: -nas stage: - committed/rejected ___ Python tracker rep...@bugs.python.org

[issue4151] Separate build dir broken

2010-04-08 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +merwok ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4151 ___ ___ Python-bugs-list mailing

[issue4151] Separate build dir broken

2010-02-16 Thread Matthias Klose
Matthias Klose d...@debian.org added the comment: current status with 2.7 alpha3: FAIL: test_get_python_inc (distutils.tests.test_sysconfig.SysconfigTestCase) -- Traceback (most recent call last): File

[issue4151] Separate build dir broken

2009-02-16 Thread Andy Buckley
Andy Buckley a...@insectnation.org added the comment: I'm having trouble with this as well :( It's pretty much a blocker for integrating distutils-based extension builds with an autotools library build, because the make distcheck target explicitly does the build in a subtree of the source

[issue4151] Separate build dir broken

2009-02-16 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: One additional commit change srcdir = os.path.normpath(srcdir) to srcdir = os.path.abspath(srcdir) and this should not create relative path. In this case I expect build in directory build/temp.PLATFORM_VERSION/ABS_SRC_PATH. Andi, did

[issue4151] Separate build dir broken

2009-02-12 Thread Matthias Klose
Matthias Klose d...@debian.org added the comment: still seen on the 2.6 branch. applying r69374 on the branch doesn't fix it there. -- nosy: +doko resolution: fixed - status: closed - open versions: +Python 2.6 ___ Python tracker

[issue4151] Separate build dir broken

2009-02-12 Thread Neil Schemenauer
Neil Schemenauer nas-pyt...@arctrix.com added the comment: On Thu, Feb 12, 2009 at 01:32:37PM +, Matthias Klose wrote: still seen on the 2.6 branch. applying r69374 on the branch doesn't fix it there. The fix is spread over a number of commits: r69374, r69322, r69315, r69305, r69304,

[issue4151] Separate build dir broken

2009-02-05 Thread Neil Schemenauer
Neil Schemenauer nas-pythonb...@arctrix.com added the comment: I committed my proposed changes in several chunks, ending with r69305. I think building in a separate directory again works and that non-POSIX platforms are not adversely affected by this change.

[issue4151] Separate build dir broken

2009-02-05 Thread Neil Schemenauer
Neil Schemenauer nas-pyt...@arctrix.com added the comment: I committed my proposed changes in several chunks, ending with r69305. I think building in a separate directory again works and that non-POSIX platforms are not adversely affected by this change. -- nosy: +nascheme resolution:

[issue4151] Separate build dir broken

2009-02-05 Thread Neil Schemenauer
Changes by Neil Schemenauer nas-pyt...@arctrix.com: ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4151 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4151] Separate build dir broken

2009-02-05 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: May be not related to the commit but after clean make fail to build a number of modules, as example _bisect. Second run of make build all left. The value of srcdir (from Makefile) is .. without quotes. About cleanup: one use of

[issue4151] Separate build dir broken

2009-02-05 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: The clean build' mean missing subdirectory build in builddir . Now module objects go in build/Modules/. I guess that second make succeed as libffi create build directory. ___ Python tracker

[issue4151] Separate build dir broken

2009-02-05 Thread Neil Schemenauer
Neil Schemenauer nas-pyt...@arctrix.com added the comment: Roumen, thanks for reporting the bug. It seems that distutils requires an absolute path (although I didn't waste time digging too deep into the issue). ___ Python tracker rep...@bugs.python.org

[issue4151] Separate build dir broken

2008-10-22 Thread Neil Schemenauer
Neil Schemenauer [EMAIL PROTECTED] added the comment: [Roumen Petrov] Modification for test_build_ext.py from above mentioned issue break non-posix builds. Without that change the test fails on Unix platforms when the build is not done inside the source directory. I guess the problem must be

[issue4151] Separate build dir broken

2008-10-20 Thread Neil Schemenauer
New submission from Neil Schemenauer [EMAIL PROTECTED]: Building in a separate directory got broken at some point. The code is hairy but it looks like the source of the problem was a lame sysconfig.get_python_inc() function. The attached patches fix things and hopefully do not introduce any

[issue4151] Separate build dir broken

2008-10-20 Thread Neil Schemenauer
Changes by Neil Schemenauer [EMAIL PROTECTED]: Added file: http://bugs.python.org/file11838/get_python_inc2.patch ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4151 ___

[issue4151] Separate build dir broken

2008-10-20 Thread Neil Schemenauer
Changes by Neil Schemenauer [EMAIL PROTECTED]: Removed file: http://bugs.python.org/file11837/get_python_inc.patch ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4151 ___

[issue4151] Separate build dir broken

2008-10-20 Thread Roumen Petrov
Roumen Petrov [EMAIL PROTECTED] added the comment: get_python_inc() and test case is addressed in issue4070 as well. -- nosy: +rpetrov ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4151 ___