diff options
author | Ilias Apalodimas <ilias.apalodimas@linaro.org> | 2025-05-20 08:21:27 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-29 18:42:37 -0600 |
commit | 919bd66ca8c966a30448d8befc7b59d58ba8d22d (patch) | |
tree | 3ab730f268ed461eefc3b8c4d6c95993859fce77 | |
parent | 82f75d890d7af1cecd30e6e9f675889b915e68ed (diff) |
kbuild: remove redundant 'set -e' from cmd_* defines
Backported from kernel
commit 5439f09f488f ("kbuild: remove redundant 'set -e' from cmd_* defines")
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rw-r--r-- | scripts/Makefile.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 80caddde09a..fa91445f132 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -159,7 +159,6 @@ cmd_gensymtypes = \ quiet_cmd_cc_symtypes_c = SYM $(quiet_modtag) $@ cmd_cc_symtypes_c = \ - set -e; \ $(call cmd_gensymtypes,true,$@) >/dev/null; \ test -s $@ || rm -f $@ |