From: Anthony PERARD Date: Mon, 5 Jul 2021 14:47:51 +0000 (+0200) Subject: build: fix %.s: %.S rule X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~368 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d468f9522174114ab06239894b6079c0a487e408;p=xen.git build: fix %.s: %.S rule Fixes: e321576f4047 ("xen/build: start using if_changed") Signed-off-by: Anthony PERARD Reviewed-by: Jan Beulich --- diff --git a/xen/Rules.mk b/xen/Rules.mk index ceb3d204b8..d65d6a4899 100644 --- a/xen/Rules.mk +++ b/xen/Rules.mk @@ -227,8 +227,8 @@ cmd_cpp_i_c = $(CPP) $(filter-out -Wa$(comma)%,$(c_flags)) -MQ $@ -o $@ $< quiet_cmd_cc_s_c = CC $@ cmd_cc_s_c = $(CC) $(filter-out -Wa$(comma)%,$(c_flags)) -S $< -o $@ -quiet_cmd_s_S = CPP $@ -cmd_s_S = $(CPP) $(filter-out -Wa$(comma)%,$(a_flags)) -MQ $@ -o $@ $< +quiet_cmd_cpp_s_S = CPP $@ +cmd_cpp_s_S = $(CPP) $(filter-out -Wa$(comma)%,$(a_flags)) -MQ $@ -o $@ $< %.i: %.c FORCE $(call if_changed,cpp_i_c)