linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] objdump: restore quiet build output
@ 2019-09-10  9:20 Arnd Bergmann
  2019-09-16 19:18 ` Josh Poimboeuf
  0 siblings, 1 reply; 2+ messages in thread
From: Arnd Bergmann @ 2019-09-10  9:20 UTC (permalink / raw)
  To: Josh Poimboeuf, Peter Zijlstra
  Cc: Arnd Bergmann, Masami Hiramatsu, Adrian Hunter, Jiri Olsa,
	Namhyung Kim, Arnaldo Carvalho de Melo, linux-kernel

After a recent sync-check.sh update, a 'make -s' build prints a
single line of output from the 'cd -' command:

    /git/linux/tools/objtool

This is clearly unintended, so revert back to a completely quiet
build by redirecting the cd output to /dev/null.

Fixes: 2ffd84ae973b ("objtool: Update sync-check.sh from perf's check-headers.sh")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 tools/objtool/sync-check.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/objtool/sync-check.sh b/tools/objtool/sync-check.sh
index 0a832e265a50..94b8d76c2851 100755
--- a/tools/objtool/sync-check.sh
+++ b/tools/objtool/sync-check.sh
@@ -48,4 +48,4 @@ check arch/x86/include/asm/insn.h     '-I "^#include [\"<]\(asm/\)*inat.h[\">]"'
 check arch/x86/lib/inat.c             '-I "^#include [\"<]\(../include/\)*asm/insn.h[\">]"'
 check arch/x86/lib/insn.c             '-I "^#include [\"<]\(../include/\)*asm/in\(at\|sn\).h[\">]"'
 
-cd -
+cd - > /dev/null
-- 
2.20.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-09-16 19:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-10  9:20 [PATCH] objdump: restore quiet build output Arnd Bergmann
2019-09-16 19:18 ` Josh Poimboeuf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).