diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-01-17 16:18:37 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2017-01-25 02:51:09 +0100 |
commit | 8c9b23ffb3f92ffa4cbe37b1bab4542586e0bfd1 (patch) | |
tree | 97478f876e91cc4ed052fbe6f8974701617dc2a1 /arch/mips/Makefile | |
parent | 1742ac265046f34223e06d5d283496f0291be259 (diff) | |
download | linux-8c9b23ffb3f92ffa4cbe37b1bab4542586e0bfd1.tar.gz linux-8c9b23ffb3f92ffa4cbe37b1bab4542586e0bfd1.tar.bz2 linux-8c9b23ffb3f92ffa4cbe37b1bab4542586e0bfd1.zip |
MIPS: 'make -s' should be silent
A clean mips64 build produces no output except for two lines:
Checking missing-syscalls for N32
Checking missing-syscalls for O32
On other architectures, there is no output at all, so let's do the
same here for the sake of build testing. The 'kecho' macro is used
to print the message on a normal build but skip it with 'make -s'.
Fixes: e48ce6b8df5b ("[MIPS] Simplify missing-syscalls for N32 and O32")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Paul Burton <paul.burton@imgtec.com>
Cc: Matt Redfearn <matt.redfearn@imgtec.com>
Cc: Huacai Chen <chenhc@lemote.com>
Cc: Maarten ter Huurne <maarten@treewalker.org>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/15040/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/Makefile')
-rw-r--r-- | arch/mips/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 06d79586368e..6ea306b28ae9 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -386,11 +386,11 @@ dtbs_install: archprepare: ifdef CONFIG_MIPS32_N32 - @echo ' Checking missing-syscalls for N32' + @$(kecho) ' Checking missing-syscalls for N32' $(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=n32" endif ifdef CONFIG_MIPS32_O32 - @echo ' Checking missing-syscalls for O32' + @$(kecho) ' Checking missing-syscalls for O32' $(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=32" endif |