From: Keir Fraser Date: Fri, 20 May 2011 07:48:33 +0000 (+0100) Subject: Makefile: install-tools does not depend on ioemu-dir if CONFIG_IOEMU=n X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~10346 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0d094d5c2f0d70bb66d060962e78591df7d1042a;p=xen.git Makefile: install-tools does not depend on ioemu-dir if CONFIG_IOEMU=n Based on patch by George Dunlap. Signed-off-by: Keir Fraser --- 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