diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-31 17:24:09 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-01-06 09:46:51 +0900 |
commit | ad774086356da92a477a87916613d96f4b36005c (patch) | |
tree | 74ef11898c40507c5705d6980e856a250a4b089a /arch/s390 | |
parent | 172caf1993b7a6503a9f7faf589e2cf26eb1f219 (diff) | |
download | blackbird-obmc-linux-ad774086356da92a477a87916613d96f4b36005c.tar.gz blackbird-obmc-linux-ad774086356da92a477a87916613d96f4b36005c.zip |
kbuild: change filechk to surround the given command with { }
filechk_* rules often consist of multiple 'echo' lines. They must be
surrounded with { } or ( ) to work correctly. Otherwise, only the
string from the last 'echo' would be written into the target.
Let's take care of that in the 'filechk' in scripts/Kbuild.include
to clean up filechk_* rules.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/tools/Makefile b/arch/s390/tools/Makefile index 48cdac1143a9..cf4846a7ee8d 100644 --- a/arch/s390/tools/Makefile +++ b/arch/s390/tools/Makefile @@ -25,7 +25,7 @@ define filechk_facility-defs.h endef define filechk_dis-defs.h - ( $(obj)/gen_opcode_table < $(srctree)/arch/$(ARCH)/tools/opcodes.txt ) + $(obj)/gen_opcode_table < $(srctree)/arch/$(ARCH)/tools/opcodes.txt endef $(kapi)/facility-defs.h: $(obj)/gen_facilities FORCE |