diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-03-31 14:14:16 +0300 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-04-20 11:36:57 +0300 |
commit | be1fb0e8eb0821234a9df2e2938332c1884f7f0f (patch) | |
tree | 31b85d9379fb01571084c4738331592fe4587754 /arch/arm/boot/bootp | |
parent | fe69b420d39d307cfe2cba875dc1dbf668877198 (diff) | |
download | linux-be1fb0e8eb0821234a9df2e2938332c1884f7f0f.tar.xz |
kbuild: delete unnecessary "@:"
Since commit 2aedcd098a94 ('kbuild: suppress annoying "... is up to
date." message'), $(call if_changed,...) is evaluated to "@:"
when there is nothing to do.
We no longer need to add "@:" after $(call if_changed,...) to
suppress "... is up to date." message.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'arch/arm/boot/bootp')
-rw-r--r-- | arch/arm/boot/bootp/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/boot/bootp/Makefile b/arch/arm/boot/bootp/Makefile index 5761f0039133..52a543b17ee3 100644 --- a/arch/arm/boot/bootp/Makefile +++ b/arch/arm/boot/bootp/Makefile @@ -17,7 +17,6 @@ targets := bootp init.o kernel.o initrd.o # Note that bootp.lds picks up kernel.o and initrd.o $(obj)/bootp: $(src)/bootp.lds $(addprefix $(obj)/,init.o kernel.o initrd.o) FORCE $(call if_changed,ld) - @: # kernel.o and initrd.o includes a binary image using # .incbin, a dependency which is not tracked automatically |