Skip to content

Commit b0b6abe

Browse files
masahir0yRussell King
authored andcommitted
ARM: 8541/1: decompressor: drop redundant FORCE in Makefile
The object "piggy.$(suffix_y).o" is created from "piggy.$(suffix).S" by the following pattern rule defined in scripts/Makefile.build: $(obj)/%.o: $(src)/%.S FORCE $(call if_changed_dep,as_o_S) FORCE is already added to the prerequisite of the object there. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
1 parent 822ec1b commit b0b6abe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/boot/compressed/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
178178
$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
179179
$(call if_changed,$(suffix_y))
180180

181-
$(obj)/piggy.$(suffix_y).o: $(obj)/piggy.$(suffix_y) FORCE
181+
$(obj)/piggy.$(suffix_y).o: $(obj)/piggy.$(suffix_y)
182182

183183
CFLAGS_font.o := -Dstatic=
184184

0 commit comments

Comments
 (0)