diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-09-10 23:47:10 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-09-10 23:47:10 +0000 |
commit | 1cb2622f9c583c0d4a2ac00b7eaf389f85693397 (patch) | |
tree | d128facff9b241ebbbf47e7ab0629046e481b647 | |
parent | fe538ba5d68391562b23d9d0902b4219b6329cad (diff) | |
download | busybox-1cb2622f9c583c0d4a2ac00b7eaf389f85693397.tar.gz |
Fix a bug where make clean complained about having both : and :: entries.
Remove tester.log on make clean
Patch by Arthur Othieno
-rw-r--r-- | tests/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 3c604cd32..16f53452e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -10,8 +10,9 @@ message_header: @echo (cd ..; tests/busybox.REGRESS.sh) -clean: +clean:: rm -f *.o + rm -f tester.log distclean: clean |