Makefile: fix cleaning path having whitespaces

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2011-01-16 17:53:32 +01:00
parent 980ebb6f19
commit b81c8b58ed
1 changed files with 4 additions and 4 deletions

View File

@ -22,10 +22,10 @@ SHELL=/bin/bash
clean: clean:
-python setup.py clean --all -python setup.py clean --all
-rm -f bin/offlineimapc -rm -f bin/offlineimapc
-rm -f `find . -name "*.pyc"` -find . -name '*.pyc' -exec rm -f {} \;
-rm -f `find . -name "*.pygc"` -find . -name '*.pygc' -exec rm -f {} \;
-rm -f `find . -name "*.class"` -find . -name '*.class' -exec rm -f {} \;
-rm -f `find . -name ".cache*"` -find . -name '.cache*' -exec rm -f {} \;
-rm -f manpage.links manpage.refs -rm -f manpage.links manpage.refs
-find . -name auth -exec rm -vf {}/password {}/username \; -find . -name auth -exec rm -vf {}/password {}/username \;
-rm -f readme.html -rm -f readme.html