aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-04-10 19:59:20 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-04-10 19:59:20 +0000
commitb75a1c3c2a338d1b2401a3c1eb61d4895085520f (patch)
tree10889a66e27a3433d7ebd21c74845a762dbfe469
parentfcc6347976ded376c9effe3b9fb216b00b2140cb (diff)
downloadbusybox-w32-b75a1c3c2a338d1b2401a3c1eb61d4895085520f.tar.gz
busybox-w32-b75a1c3c2a338d1b2401a3c1eb61d4895085520f.tar.bz2
busybox-w32-b75a1c3c2a338d1b2401a3c1eb61d4895085520f.zip
fix "make check"
-rw-r--r--Makefile3
-rw-r--r--Makefile.custom8
2 files changed, 8 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index af602d75c..f110fed24 100644
--- a/Makefile
+++ b/Makefile
@@ -361,7 +361,8 @@ endif
361# of make so .config is not included in this case either (for *config). 361# of make so .config is not included in this case either (for *config).
362 362
363no-dot-config-targets := clean mrproper distclean \ 363no-dot-config-targets := clean mrproper distclean \
364 cscope TAGS tags help %docs check% 364 cscope TAGS tags help %docs
365#bbox# check% is removed from above
365 366
366config-targets := 0 367config-targets := 0
367mixed-targets := 0 368mixed-targets := 0
diff --git a/Makefile.custom b/Makefile.custom
index a4db14172..e4a616f65 100644
--- a/Makefile.custom
+++ b/Makefile.custom
@@ -46,9 +46,13 @@ ifneq ($(strip $(DO_INSTALL_LIBS)),n)
46 done 46 done
47endif 47endif
48 48
49# Not very elegant: copies testsuite to objdir...
50.PHONY: check
51.PHONY: test
49check test: busybox busybox.links 52check test: busybox busybox.links
50 bindir=$(objtree) srcdir=$(srctree)/testsuite SED="$(SED)" \ 53 test -d $(objtree)/testsuite || cp -a $(srctree)/testsuite $(objtree)
51 $(SHELL) $(srctree)/testsuite/runtest $(if $(KBUILD_VERBOSE:0=),-v) 54 bindir=$(objtree) srcdir=$(srctree)/testsuite \
55 $(SHELL) -c "cd $(objtree)/testsuite && $(srctree)/testsuite/runtest $(if $(KBUILD_VERBOSE:0=),-v)"
52 56
53.PHONY: release 57.PHONY: release
54release: distclean 58release: distclean