From: Ian Jackson Date: Fri, 12 Oct 2018 17:56:04 +0000 (+0000) Subject: tools/firmware/Makefile: CONFIG_PV_SHIM: enable only on x86_64 X-Git-Tag: archive/raspbian/4.11.3+24-g14b62ab3e5-1+rpi1^2~13 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=41d6f610309a4dcf8fa2cb28dc7dd32ae1e82bb4;p=xen.git tools/firmware/Makefile: CONFIG_PV_SHIM: enable only on x86_64 Previously this was *dis*abled for x86_*32*. But if someone should run some of this Makefile on ARM, say, it ought not to be built either. Signed-off-by: Ian Jackson --- diff --git a/tools/firmware/Makefile b/tools/firmware/Makefile index c449fabfc8..40e36d9a6f 100644 --- a/tools/firmware/Makefile +++ b/tools/firmware/Makefile @@ -1,7 +1,7 @@ XEN_ROOT = $(CURDIR)/../.. include $(XEN_ROOT)/tools/Rules.mk -ifneq ($(XEN_TARGET_ARCH),x86_32) +ifeq ($(XEN_TARGET_ARCH),x86_64) CONFIG_PV_SHIM ?= y endif