diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-11-29 20:05:30 -0500 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-01 09:13:14 -0500 |
commit | 5439f09f488f291a9493455c24b197c99025764d (patch) | |
tree | 5ddcfb9291e821ab076b0a78db27146c1f2b4162 /scripts/package | |
parent | 67126965ee0856f0d1cdb10792a36eaf4b2f13c0 (diff) |
kbuild: remove redundant 'set -e' from cmd_* defines
These three cmd_* are invoked in the $(call cmd,*) form.
Now that 'set -e' moved to the 'cmd' macro, they do not need to
explicitly give 'set -e'.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/package')
-rw-r--r-- | scripts/package/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/package/Makefile b/scripts/package/Makefile index 73503ebce632..453fecee62f0 100644 --- a/scripts/package/Makefile +++ b/scripts/package/Makefile | |||
@@ -33,7 +33,6 @@ MKSPEC := $(srctree)/scripts/package/mkspec | |||
33 | 33 | ||
34 | quiet_cmd_src_tar = TAR $(2).tar.gz | 34 | quiet_cmd_src_tar = TAR $(2).tar.gz |
35 | cmd_src_tar = \ | 35 | cmd_src_tar = \ |
36 | set -e; \ | ||
37 | if test "$(objtree)" != "$(srctree)"; then \ | 36 | if test "$(objtree)" != "$(srctree)"; then \ |
38 | echo >&2; \ | 37 | echo >&2; \ |
39 | echo >&2 " ERROR:"; \ | 38 | echo >&2 " ERROR:"; \ |