Skip to content

Commit d9997f7

Browse files
olsajirinamhyung
authored andcommitted
tools/build: Fix -s detection code in tools/build/Makefile.build
As Dmitry described in [1] changelog the current way of detecting -s option is broken for new make. Changing the tools/build -s option detection the same way as it was fixed for root Makefile in [1]. [1] 4bf7358 ("kbuild: Port silent mode detection to future gnu make.") Cc: Dmitry Goncharov <dgoncharov@users.sf.net> Signed-off-by: Jiri Olsa <jolsa@kernel.org> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: KP Singh <kpsingh@chromium.org> Cc: Martin KaFai Lau <kafai@fb.com> Cc: Song Liu <songliubraving@fb.com> Cc: Yonghong Song <yhs@fb.com> Cc: John Fastabend <john.fastabend@gmail.com> Cc: Hao Luo <haoluo@google.com> Cc: Ian Rogers <irogers@google.com> Cc: Stanislav Fomichev <sdf@google.com> Cc: Daniel Borkmann <daniel@iogearbox.net> Cc: Quentin Monnet <quentin@isovalent.com> Cc: Arnaldo Carvalho de Melo <acme@kernel.org> Cc: Andrii Nakryiko <andrii@kernel.org> Cc: Alexei Starovoitov <ast@kernel.org> Cc: Ingo Molnar <mingo@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: bpf@vger.kernel.org Cc: linux-perf-users@vger.kernel.org Link: https://lore.kernel.org/r/20231008212251.236023-2-jolsa@kernel.org Signed-off-by: Namhyung Kim <namhyung@kernel.org>
1 parent 9a13ee4 commit d9997f7

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

tools/build/Makefile.build

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,15 @@ else
2020
Q=@
2121
endif
2222

23-
ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
23+
# If the user is running make -s (silent mode), suppress echoing of commands
24+
# make-4.0 (and later) keep single letter options in the 1st word of MAKEFLAGS.
25+
ifeq ($(filter 3.%,$(MAKE_VERSION)),)
26+
short-opts := $(firstword -$(MAKEFLAGS))
27+
else
28+
short-opts := $(filter-out --%,$(MAKEFLAGS))
29+
endif
30+
31+
ifneq ($(findstring s,$(short-opts)),)
2432
quiet=silent_
2533
endif
2634

0 commit comments

Comments
 (0)