diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-31 17:24:08 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-01-06 09:46:51 +0900 |
commit | 172caf1993b7a6503a9f7faf589e2cf26eb1f219 (patch) | |
tree | 1bf9a94732270a001752735cf99fa038ebaedd21 /arch/sh/tools | |
parent | f5688663db9b207d7d31f30f388417504b16b76c (diff) | |
download | linux-stable-172caf1993b7a6503a9f7faf589e2cf26eb1f219.tar.gz linux-stable-172caf1993b7a6503a9f7faf589e2cf26eb1f219.tar.bz2 linux-stable-172caf1993b7a6503a9f7faf589e2cf26eb1f219.zip |
kbuild: remove redundant target cleaning on failure
Since commit 9c2af1c7377a ("kbuild: add .DELETE_ON_ERROR special
target"), the target file is automatically deleted on failure.
The boilerplate code
... || { rm -f $@; false; }
is unneeded.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/sh/tools')
-rw-r--r-- | arch/sh/tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/tools/Makefile b/arch/sh/tools/Makefile index 2082af1f3fef..e5ba31c79fe0 100644 --- a/arch/sh/tools/Makefile +++ b/arch/sh/tools/Makefile @@ -13,4 +13,4 @@ include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types @echo ' Generating $@' $(Q)mkdir -p $(dir $@) - $(Q)LC_ALL=C $(AWK) -f $^ > $@ || { rm -f $@; /bin/false; } + $(Q)LC_ALL=C $(AWK) -f $^ > $@ |