commit: 6e5c613c47443876548eb4c05e16f8d3589e3118
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 9 04:42:47 2015 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Jan 9 04:43:22 2015 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=6e5c613c
Makefile: Add *.pyc to clean
---
Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/Makefile b/Makefile
index 98accbe..d3c64de 100644
--- a/Makefile
+++ b/Makefile
@@ -39,6 +39,7 @@ $(DOC_SIDE_EFFECTS): $(firstword $(DOCS))
clean:
rm -f $(GENERATED_FILES)
find -name '*.pyo' -delete
+ find -name '*.pyc' -delete
check-git-repository:
git diff --quiet || { echo 'STOP, you have uncommitted changes in the
working directory' ; false ; }