]> xenbits.xensource.com Git - xen.git/commitdiff
build: fix %.s: %.S rule
authorAnthony PERARD <anthony.perard@citrix.com>
Thu, 15 Jul 2021 07:34:03 +0000 (09:34 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 15 Jul 2021 07:34:03 +0000 (09:34 +0200)
Fixes: e321576f4047 ("xen/build: start using if_changed")
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
master commit: d468f9522174114ab06239894b6079c0a487e408
master date: 2021-07-05 16:47:51 +0200

xen/Rules.mk

index 62e9fabe7ad8f4432baabd681835303488ba624e..93f49af2eba889c854986098eaa1b0599dc79078 100644 (file)
@@ -206,8 +206,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)