diff options
author | hut <hut@lavabit.com> | 2010-03-25 15:19:28 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-03-25 15:19:28 +0100 |
commit | 606df33e73c6d832b6bb7a4012297c51a368ee89 (patch) | |
tree | 73152a3843c21ac3a3aa06c8599d98a0cdc70d37 /Makefile | |
parent | 0a16f0da970ae344f0094767c08995dd63f616cb (diff) | |
download | ranger-606df33e73c6d832b6bb7a4012297c51a368ee89.tar.gz |
fixed make clean
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index ac7b0502..884bae5d 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ cleandoc: test -d $(DOCDIR) && rm -f -- $(DOCDIR)/*.html clean: - find . -regex [^\s]\*.py[co]$ | xargs rm -f -- + find . -regex [^\ ]\*.py[co]$ | xargs rm -f -- test: ./all_tests.py |