Message ID | 1523890067-13641-6-git-send-email-yamada.masahiro@socionext.com |
---|---|
State | Accepted |
Commit | 92b34a9763480b12745a2fc93ff14972426fe8df |
Headers | show |
Series | MIPS: boot: fix various problems in arch/mips/boot/Makefile | expand |
diff --git a/arch/mips/boot/Makefile b/arch/mips/boot/Makefile index 30512ab..91d9fe8 100644 --- a/arch/mips/boot/Makefile +++ b/arch/mips/boot/Makefile @@ -126,6 +126,12 @@ quiet_cmd_its_cat = CAT $@ $(obj)/vmlinux.its.S: $(addprefix $(srctree)/arch/mips/$(PLATFORM)/,$(ITS_INPUTS)) FORCE $(call if_changed,its_cat) +targets += vmlinux.its +targets += vmlinux.gz.its +targets += vmlinux.bz2.its +targets += vmlinux.lzmo.its +targets += vmlinux.lzo.its + quiet_cmd_cpp_its_S = ITS $@ cmd_cpp_its_S = $(CPP) -P -C -o $@ $< \ -DKERNEL_NAME="\"Linux $(KERNELRELEASE)\"" \
The build rule of vmlinux.*.its is invoked by $(call if_changed,...) but it always rebuilds the target needlessly due to missing targets. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- arch/mips/boot/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) -- 2.7.4