From 75082b64babb228505591c6c9134bb3ea07a5f0b Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Fri, 9 Jan 2015 14:19:53 +0100 Subject: [PATCH] make: wipe $(TEMPDIR) before running tests --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5eefff85b..bcba7f737 100644 --- a/Makefile +++ b/Makefile @@ -256,6 +256,7 @@ $(BUILDDIR): mkdir -p $(BUILDDIR)/gen $(TEMPDIR): + $(RM) -rf $(TEMPDIR) mkdir $(TEMPDIR) install: $(addprefix $(BUILDDIR)/,$(INSTALLEES)) @@ -300,4 +301,4 @@ busytest: $(BUILDDIR)/busybox $(BUILDDIR)/.config (cd $(BUSYBOX_SRC)/testsuite && bindir=$(BUILDDIR) ./runtest $(RUNTEST_ARGS)) endif -.PHONY: all deps test clean busytest install uninstall +.PHONY: $(TEMPDIR) all deps test clean busytest install uninstall