[issue4007] make clean fails to delete .a and .so.X.Y files

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Applied in r83372. -- nosy: +georg.brandl resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4007

[issue4007] make clean fails to delete .a and .so.X.Y files

2010-05-21 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Yes, make clean should remove *.a and *.so.* files. The patch looks ok. -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4007

[issue4007] make clean fails to delete .a and .so.X.Y files

2010-05-20 Thread Skip Montanaro
Changes by Skip Montanaro s...@pobox.com: -- nosy: -skip.montanaro ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4007 ___ ___ Python-bugs-list

[issue4007] make clean fails to delete .a and .so.X.Y files

2010-05-15 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Note: Using find -delete avoids the extra process spawning for rm. However, if the -f option is really necessary, we’ll have to use rm. Someone has an idea about the imperfect regex/glob pattern? -- nosy: +merwok

[issue4007] make clean fails to delete .a and .so.X.Y files

2010-05-15 Thread Skip Montanaro
Skip Montanaro s...@pobox.com added the comment: Note: Using find -delete avoids the extra process spawning for rm. The -delete expression isn't universally available. For example, it is not present on Solaris. Better just to stick with the reliable rm. Skip --

[issue4007] make clean fails to delete .a and .so.X.Y files

2010-04-09 Thread Shashwat Anand
Shashwat Anand anand.shash...@gmail.com added the comment: skip.montanaro forgot to attached the patch obviously, however the issue is trivial but there i.e. the presence of libpython.a file. -- nosy: +l0nwlf ___ Python tracker

[issue4007] make clean fails to delete .a and .so.X.Y files

2010-04-09 Thread Skip Montanaro
Skip Montanaro s...@pobox.com added the comment: Martin If it did eat the patch, we would have lost it by now: there is Martin nothing in the history that shows that a file was attached at Martin some point. More likely, Skip forgot to attach it when Martin submitting this report.

[issue4007] make clean fails to delete .a and .so.X.Y files

2010-04-08 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Skip, was there a patch here? I can't find it in the bug lists, so I think we both missed it? Pinging Martin in case the tracker ate the patch :) -- nosy: +ajaksu2, loewis stage: - needs patch versions: +Python 2.7, Python 3.1

[issue4007] make clean fails to delete .a and .so.X.Y files

2010-04-08 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: If it did eat the patch, we would have lost it by now: there is nothing in the history that shows that a file was attached at some point. More likely, Skip forgot to attach it when submitting this report. --

[issue4007] make clean fails to delete .a and .so.X.Y files

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4007 ___ ___ Python-bugs-list

[issue4007] make clean fails to delete .a and .so.X.Y files

2008-10-01 Thread Skip Montanaro
New submission from Skip Montanaro [EMAIL PROTECTED]: The clean target in the makefile fails to delete the libpython.a file and the libpython.so.X.Y file (should you have configured using --enable-shared). The attached trivial patch solves that problem. The patch is against the trunk as of just