Commit 2b22f546 by Tim Bielawa

Fix the py[co] part of the clean target in the make file

parent 3c20f400
......@@ -36,7 +36,7 @@ clean:
@echo "Cleaning up distutils stuff"
rm -rf build
@echo "Cleaning up byte compiled python stuff"
find . -regex ".*\.py[co]$$"
find . -regex ".*\.py[co]$$" -delete
@echo "Cleaning up editor backup files"
find . -type f \( -name "*~" -or -name "#*" \) -delete
@echo "Cleaning up asciidoc to man transformations and results"
......
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