Commit 5aa61a63 authored by Fred Drake's avatar Fred Drake

Make the clean target more reliable when whitespace may be found in

path names.
parent f0007027
......@@ -9,5 +9,6 @@ test:
$(PYTHON) utilities/testrunner.py $(TESTOPTS)
clean:
find . -name '*.o' -o -name '*.so' -o -name '*.py[co]' \
-o -name 'core*' | xargs rm -f
find . \( -name '*.o' -o -name '*.so' -o -name '*.py[co]' \
-o -name 'core*' \) \
-exec rm {} \;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment