aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Heiko Carstens <hca@linux.ibm.com> 2024-03-26 11:52:23 +0100
committerGravatar Alexander Gordeev <agordeev@linux.ibm.com> 2024-04-09 17:29:56 +0200
commit4f00d4ef6634b31d6026b9bf6bb1a90c889e2347 (patch)
tree39d156b515b4d3f8602a52d55b0df1bfd348e24a
parents390/cio: convert sprintf()/snprintf() to sysfs_emit() (diff)
downloadlinux-4f00d4ef6634b31d6026b9bf6bb1a90c889e2347.tar.gz
linux-4f00d4ef6634b31d6026b9bf6bb1a90c889e2347.tar.bz2
linux-4f00d4ef6634b31d6026b9bf6bb1a90c889e2347.zip
s390: adjust indentation of RELOCS command build step out
Common pattern in non-verbose build output for quiet commands is that the shorthand of a command including whitespace contains at least eight characters. Adjust this for the RELOCS command, which comes only with seven characters. Before: SORTTAB vmlinux CC arch/s390/boot/version.o RELOCS arch/s390/boot/relocs.S OBJCOPY arch/s390/boot/info.bin After: SORTTAB vmlinux CC arch/s390/boot/version.o RELOCS arch/s390/boot/relocs.S OBJCOPY arch/s390/boot/info.bin Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
-rw-r--r--arch/s390/boot/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/boot/Makefile b/arch/s390/boot/Makefile
index 294f08a8811a..bd5d4d37a961 100644
--- a/arch/s390/boot/Makefile
+++ b/arch/s390/boot/Makefile
@@ -112,7 +112,7 @@ $(obj)/vmlinux.bin: vmlinux FORCE
ifndef CONFIG_PIE_BUILD
CMD_RELOCS=arch/s390/tools/relocs
-quiet_cmd_relocs = RELOCS $@
+quiet_cmd_relocs = RELOCS $@
cmd_relocs = $(CMD_RELOCS) $< > $@
$(obj)/relocs.S: vmlinux FORCE
$(call if_changed,relocs)