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-w32-1cb2622f9c583c0d4a2ac00b7eaf389f85693397.tar.gz busybox-w32-1cb2622f9c583c0d4a2ac00b7eaf389f85693397.tar.bz2 busybox-w32-1cb2622f9c583c0d4a2ac00b7eaf389f85693397.zip |
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: | |||
10 | @echo | 10 | @echo |
11 | (cd ..; tests/busybox.REGRESS.sh) | 11 | (cd ..; tests/busybox.REGRESS.sh) |
12 | 12 | ||
13 | clean: | 13 | clean:: |
14 | rm -f *.o | 14 | rm -f *.o |
15 | rm -f tester.log | ||
15 | 16 | ||
16 | distclean: clean | 17 | distclean: clean |
17 | 18 | ||