diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-11-29 20:05:28 -0500 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-01 09:13:14 -0500 |
commit | e5d289100d3aef3e83dc1b8303999e26d86acb7b (patch) | |
tree | b4c7f628c06ab4a08523faf12563afa094dbd52f /scripts/Kbuild.include | |
parent | 3a2429e1faf40b2aaa481aa4b001a74d222c7e8b (diff) |
kbuild: remove trailing semicolon from cmd_* passed to if_changed_rule
With the change of rule_cc_o_c / rule_as_o_S in the last commit, each
command is executed in a separate subshell. Rip off unneeded semicolons.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/Kbuild.include')
-rw-r--r-- | scripts/Kbuild.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 6bbbe7533d6f..ba297fdd7c52 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include | |||
@@ -261,7 +261,7 @@ if_changed_dep = $(if $(strip $(any-prereq) $(arg-check)),$(cmd_and_fixdep),@:) | |||
261 | cmd_and_fixdep = \ | 261 | cmd_and_fixdep = \ |
262 | $(cmd); \ | 262 | $(cmd); \ |
263 | scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).cmd;\ | 263 | scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).cmd;\ |
264 | rm -f $(depfile); | 264 | rm -f $(depfile) |
265 | 265 | ||
266 | # Usage: $(call if_changed_rule,foo) | 266 | # Usage: $(call if_changed_rule,foo) |
267 | # Will check if $(cmd_foo) or any of the prerequisites changed, | 267 | # Will check if $(cmd_foo) or any of the prerequisites changed, |