diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-04-08 11:16:10 +0900 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-04-20 10:38:40 +0200 |
commit | 1c44b28dfe527d70a6451ffb7ee091221be82168 (patch) | |
tree | 0b669db9d3545057e4310a224dbbdb0736e837a9 /arch/unicore32/boot/Makefile | |
parent | be1fb0e8eb0821234a9df2e2938332c1884f7f0f (diff) | |
download | talos-op-linux-1c44b28dfe527d70a6451ffb7ee091221be82168.tar.gz talos-op-linux-1c44b28dfe527d70a6451ffb7ee091221be82168.zip |
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>
Diffstat (limited to 'arch/unicore32/boot/Makefile')
-rw-r--r-- | arch/unicore32/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/unicore32/boot/Makefile b/arch/unicore32/boot/Makefile index ec7fb70b412b..828855007b29 100644 --- a/arch/unicore32/boot/Makefile +++ b/arch/unicore32/boot/Makefile @@ -31,7 +31,7 @@ $(obj)/uImage: $(obj)/zImage FORCE $(call if_changed,uimage) @echo ' Image $@ is ready' -PHONY += initrd FORCE +PHONY += initrd initrd: @test "$(INITRD)" != "" || \ (echo You must specify INITRD; exit -1) |