From 18acfc010375dff64ff4b62582a72576bd83bc06 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sun, 8 Jun 2014 19:03:38 -0700 Subject: [PATCH] Make busytest stop complaining about missing config file --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3a6bba447..8ef8504e8 100644 --- a/Makefile +++ b/Makefile @@ -145,6 +145,11 @@ build/busybox: build/uutils rm -f build/busybox ln -s $(SRC_DIR)/build/uutils build/busybox +# This is a busybox-specific config file their test suite wants to parse. +# For now it's blank. +build/.config: build/uutils + touch $@ + ifeq ($(BUSYBOX_SRC),) busytest: @echo @@ -153,7 +158,7 @@ busytest: @echo @false else -busytest: build/busybox +busytest: build/busybox build/.config (cd $(BUSYBOX_SRC)/testsuite && bindir=$(SRC_DIR)/build tstdir=$(BUSYBOX_SRC)/testsuite $(BUSYBOX_SRC)/testsuite/runtest $(RUNTEST_ARGS)) endif endif