From 0d094d5c2f0d70bb66d060962e78591df7d1042a Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 20 May 2011 08:48:33 +0100 Subject: Makefile: install-tools does not depend on ioemu-dir if CONFIG_IOEMU=n Based on patch by George Dunlap. Signed-off-by: Keir Fraser --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9f1e3c4af1..31e87958f0 100644 --- a/Makefile +++ b/Makefile @@ -66,9 +66,13 @@ install-xen: $(MAKE) -C xen install .PHONY: install-tools -install-tools: tools/ioemu-dir +install-tools: $(MAKE) -C tools install +ifeq ($(CONFIG_IOEMU),y) +install-tools: tools/ioemu-dir +endif + .PHONY: install-kernels install-kernels: for i in $(XKERNELS) ; do $(MAKE) $$i-install || exit 1; done -- cgit v1.2.3