[issue1718574] build_clib --build-clib/--build-temp option bugs

2010-09-07 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: The bug has been present since the addition of those options in 2000. It is now fixed in py3k (r84608), 3.1 (r84609), 2.7 (r84610) and distutils2 (374a277616d8). Thanks! -- resolution: accepted - fixed stage: patch review -

[issue1718574] build_clib --build-clib/--build-temp option bugs

2010-07-22 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Confirmed here: python setup.py build_clib -b/some/dir returns error: option -/ not recognized All other files (build_ext.py, clean.py) have a '=' after these options names. Patch is inlined: Index: Lib/distutils/command/build_clib.py

[issue1718574] build_clib --build-clib/--build-temp option bugs

2010-07-22 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for the report. It is indeed a stupid typo. Can someone produce a patch against current py3k? Confirmed in distutils2 too, I can fix it there. -- components: +Distutils2 nosy: +merwok resolution: - accepted

[issue1718574] build_clib --build-clib/--build-temp option bugs

2010-06-26 Thread Pearu Peterson
Pearu Peterson pe...@users.sourceforge.net added the comment: I wonder why this issue is not fixed already. The fix would be trivial (add two `=`) and the bug is due to a simple typo (the current behavior is conflicting with the documentation and options intentions, see `setup.py build_clib

[issue1718574] build_clib --build-clib/--build-temp option bugs

2010-06-25 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 2.7 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1718574 ___ ___

[issue1718574] build_clib --build-clib/--build-temp option bugs

2009-02-08 Thread Akira Kitada
Changes by Akira Kitada akit...@gmail.com: -- nosy: +tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1718574 ___ ___ Python-bugs-list mailing

[issue1718574] build_clib --build-clib/--build-temp option bugs

2009-02-08 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: can you provide an example and/or a traceback of the problem ? -- assignee: - tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1718574

[issue1718574] build_clib --build-clib/--build-temp option bugs

2009-02-08 Thread Pearu Peterson
Pearu Peterson pe...@users.sourceforge.net added the comment: Consider a trivial setup file: from distutils.core import setup setup() Here is an example traceback (the second command illustrates the bug): $ python setup.py build --build-temp=/tmp running build $ python setup.py build_clib