From: Anthony PERARD Date: Wed, 15 Jun 2022 08:24:06 +0000 (+0200) Subject: build: remove auto.conf prerequisite from compat/xlat.h target X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~559 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8c1d9760b1d847d983529eae2b360b38648841b5;p=xen.git build: remove auto.conf prerequisite from compat/xlat.h target Now that the command line generating "xlat.h" is check on rebuild, the header will be regenerated whenever the list of xlat headers changes due to change in ".config". We don't need to force a regeneration for every changes in ".config". Signed-off-by: Anthony PERARD Acked-by: Jan Beulich --- diff --git a/xen/include/Makefile b/xen/include/Makefile index 6d9bcc19b0..617599df7e 100644 --- a/xen/include/Makefile +++ b/xen/include/Makefile @@ -101,7 +101,7 @@ cmd_xlat_h = \ cat $(filter %.h,$^) >$@.new; \ mv -f $@.new $@ -$(obj)/compat/xlat.h: $(addprefix $(obj)/compat/.xlat/,$(xlat-y)) $(obj)/config/auto.conf FORCE +$(obj)/compat/xlat.h: $(addprefix $(obj)/compat/.xlat/,$(xlat-y)) FORCE $(call if_changed,xlat_h) ifeq ($(XEN_TARGET_ARCH),$(XEN_COMPILE_ARCH))