diff options
author | hut <hut@lavabit.com> | 2010-02-28 19:35:44 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-02-28 19:35:44 +0100 |
commit | 50a0cb1c6f987757eafef3673c3a445d07535ae4 (patch) | |
tree | c9c5741322074e3c9d7f27e143bc9f7b7398989f | |
parent | 0085516925873f5cf08c42fdd15ae8fbef50f6f0 (diff) | |
download | ranger-50a0cb1c6f987757eafef3673c3a445d07535ae4.tar.gz |
make clean: fixed
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index a790fb41..392c6a9a 100644 --- a/Makefile +++ b/Makefile @@ -33,10 +33,10 @@ install: @less -XF INSTALL cleandoc: - test -d $(DOCDIR) && rm -f $(DOCDIR)/*.html + test -d $(DOCDIR) && rm -f -- $(DOCDIR)/*.html clean: - find . -regex .\*.py[co]$ | xargs rm + find . -regex .\*.py[co]$ | xargs rm -f -- test: clean ./all_tests.py |