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

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Applied in r83372. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker ___ _

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

2010-05-21 Thread STINNER Victor
STINNER Victor added the comment: Yes, "make clean" should remove *.a and *.so.* files. The patch looks ok. -- nosy: +haypo ___ Python tracker ___ ___

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

2010-05-20 Thread Skip Montanaro
Changes by Skip Montanaro : -- nosy: -skip.montanaro ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

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

2010-05-15 Thread Skip Montanaro
Skip Montanaro 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-05-15 Thread Éric Araujo
Éric Araujo 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-04-09 Thread Skip Montanaro
Skip Montanaro 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. Yeah, I must

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

2010-04-08 Thread Shashwat Anand
Shashwat Anand 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-08 Thread Martin v . Löwis
Martin v. Löwis 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. -- ___ P

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

2010-04-08 Thread Daniel Diniz
Daniel Diniz 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

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[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 j