Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

kbuild: drop redundant "PHONY += FORCE"

"PHONY += FORCE" is already cared by scripts/Makefile.build,
which these files are included from.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.com>

authored by

Masahiro Yamada and committed by
Michal Marek
1c44b28d be1fb0e8

+3 -3
+1 -1
arch/arm/boot/bootp/Makefile
··· 25 25 26 26 $(obj)/initrd.o: $(INITRD) FORCE 27 27 28 - PHONY += $(INITRD) FORCE 28 + PHONY += $(INITRD)
+1 -1
arch/ia64/Makefile
··· 96 96 endef 97 97 98 98 archprepare: make_nr_irqs_h 99 - PHONY += make_nr_irqs_h FORCE 99 + PHONY += make_nr_irqs_h 100 100 101 101 make_nr_irqs_h: 102 102 $(Q)$(MAKE) $(build)=arch/ia64/kernel include/generated/nr-irqs.h
+1 -1
arch/unicore32/boot/Makefile
··· 31 31 $(call if_changed,uimage) 32 32 @echo ' Image $@ is ready' 33 33 34 - PHONY += initrd FORCE 34 + PHONY += initrd 35 35 initrd: 36 36 @test "$(INITRD)" != "" || \ 37 37 (echo You must specify INITRD; exit -1)