From 2b22f546a2ab0d0dfeacbdfc27d2d750a725215e Mon Sep 17 00:00:00 2001 From: Tim Bielawa Date: Mon, 5 Mar 2012 16:21:39 -0500 Subject: [PATCH] Fix the py[co] part of the clean target in the make file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8652dae1ede..e8283e4ec13 100644 --- a/Makefile +++ b/Makefile @@ -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"