[issue17752] many distutils tests fail when run from the installed location

2014-05-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7d1929cc08dd by doko in branch '3.3': - Issue #17752: Fix distutils tests when run from the installed location. http://hg.python.org/cpython/rev/7d1929cc08dd New changeset 01e933cb1de9 by doko in branch '3.4': - Issue #17752: Fix distutils tests

[issue17752] many distutils tests fail when run from the installed location

2014-05-07 Thread Éric Araujo
Éric Araujo added the comment: For future fixes, please note that 3.3 is in security mode. Can this issue be closed? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17752 ___

[issue17752] many distutils tests fail when run from the installed location

2014-05-07 Thread Matthias Klose
Matthias Klose added the comment: yes, noted myself (too late), and informed Georg about it. Closing for now. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17752

[issue17752] many distutils tests fail when run from the installed location

2014-05-06 Thread Matthias Klose
Matthias Klose added the comment: so the issue here is that -L -o file is passed to the compiler, and -o is interpreted as the library dir, and file as an input file. To robustify, change distutils/tests/support.py to not include empty directory names. To fix, change configure.ac (RUNPATH)

[issue17752] many distutils tests fail when run from the installed location

2014-05-06 Thread Matthias Klose
Changes by Matthias Klose d...@debian.org: -- stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17752 ___ ___

[issue17752] many distutils tests fail when run from the installed location

2014-05-06 Thread Ned Deily
Ned Deily added the comment: The quotes that you removed around the DYLD_FRAMEWORK_PATH step are not needed, at least until the rest of configure.ac and Makefile.pre.in support paths with spaces et al. However, you missed removing the single quotes around the DYLD_LIBRARY_PATH step here:

[issue17752] many distutils tests fail when run from the installed location

2014-05-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset faef1da30c6d by doko in branch '2.7': - Issue #17752: Fix distutils tests when run from the installed location. http://hg.python.org/cpython/rev/faef1da30c6d -- nosy: +python-dev ___ Python tracker

[issue17752] many distutils tests fail when run from the installed location

2014-04-16 Thread Thomas Wouters
Thomas Wouters added the comment: Matthias, I think this is already fixed for Python 3.3 and later (at least.) There may still be problems in 2.7, but I'm not sure if it's worth fixing them there. Can you see if you still have problems, and if so, show us how to reproduce them? (Is it just

[issue17752] many distutils tests fail when run from the installed location

2014-04-16 Thread Matthias Klose
Matthias Klose added the comment: three are still failing with 3.4: cc-4.9.real: error: /tmp/tmpdjxmlia5/xx.cpython-34m.so: No such file or directory gcc-4.9.real: error: /tmp/tmp4zpi6ktg/foo.cpython-34m.so: No such file or directory gcc-4.9.real: error:

[issue17752] many distutils tests fail when run from the installed location

2014-04-16 Thread Éric Araujo
Éric Araujo added the comment: The xx module is built by the unit tests IIRC. -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17752 ___

[issue17752] many distutils tests fail when run from the installed location

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: many distutils tests fail when run from the installed location, either depending on the 'srcdir' macro, files not installed ('xxmodule.c'), or needing write permissions in the installed location. -- components: Tests messages: 187068 nosy: doko