[Python-bugs-list] [Bug #132879] 2.1a2 minor bug in "make clean" target

noreply@sourceforge.net noreply@sourceforge.net
Sun, 18 Feb 2001 20:37:30 -0800


Bug #132879, was updated on 2001-Feb-17 16:29
Here is a current snapshot of the bug.

Project: Python
Category: Build
Status: Closed
Resolution: Fixed
Bug Group: None
Priority: 5
Submitted by: mfavas
Assigned to : nobody
Summary: 2.1a2 minor bug in "make clean" target

Details: 2..1a2 from CVS of Feb 18 has the following as part of the "make
clean" target:
if test -f build; then find build -name '*.o' -exec rm -f {} ';' ; fi
"build" is a directory, so test should be "test -d build". I'll submit a
patch for this.

Follow-Ups:

Date: 2001-Feb-18 20:37
By: nascheme

Comment:
Fixed by using "find . -name '*.o' ...".
-------------------------------------------------------

For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=132879&group_id=5470