diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-11-29 20:05:24 -0500 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-01 09:13:14 -0500 |
commit | 4317ee3b6a5e8bd0f62780591df6424ef9397fbd (patch) | |
tree | 7cd1939fe2d1251cf0ee43f26115f28bdddc8d9e /scripts/Makefile.build | |
parent | f3fd4a3f3a388041fe5f1ef74fdd461900513f1e (diff) |
kbuild: remove redundant 'set -e' from sub_cmd_record_mcount
This is executed inside the if_changed_rule, which already sets
'set -e'.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/Makefile.build')
-rw-r--r-- | scripts/Makefile.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 6835f98e2070..91b63ba926fc 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
@@ -204,7 +204,7 @@ sub_cmd_record_mcount = \ | |||
204 | recordmcount_source := $(srctree)/scripts/recordmcount.c \ | 204 | recordmcount_source := $(srctree)/scripts/recordmcount.c \ |
205 | $(srctree)/scripts/recordmcount.h | 205 | $(srctree)/scripts/recordmcount.h |
206 | else | 206 | else |
207 | sub_cmd_record_mcount = set -e ; perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \ | 207 | sub_cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \ |
208 | "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \ | 208 | "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \ |
209 | "$(if $(CONFIG_64BIT),64,32)" \ | 209 | "$(if $(CONFIG_64BIT),64,32)" \ |
210 | "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS)" \ | 210 | "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS)" \ |