Makefile: fix cleaning path having whitespaces
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
980ebb6f19
commit
b81c8b58ed
8
Makefile
8
Makefile
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user