Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4] Makefile: improve detection of make "-s" flag
@ 2014-11-19 17:51 Fabio Porcedda
  2014-11-28 13:10 ` Fabio Porcedda
  2014-12-03 18:17 ` Yann E. MORIN
  0 siblings, 2 replies; 5+ messages in thread
From: Fabio Porcedda @ 2014-11-19 17:51 UTC (permalink / raw)
  To: buildroot

Because it's just checked the presence of the "s" character even a
  make --warn-undefined-variables
is detected as a silent build so fix this by filtering out long options.

Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
---

Notes:
    v4:
     - split this patch from the patch set to send to muster as bugfix
    v2:
     - remove spurious space at the beginning of the QUIET variable (Arnout)

 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 471edf9..6b97dc6 100644
--- a/Makefile
+++ b/Makefile
@@ -303,7 +303,7 @@ GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
 TARGETS :=
 
 # silent mode requested?
-QUIET := $(if $(findstring s,$(MAKEFLAGS)),-q)
+QUIET := $(if $(findstring s, $(filter-out --%, $(MAKEFLAGS))),-q)
 
 # Strip off the annoying quoting
 ARCH := $(call qstrip,$(BR2_ARCH))
-- 
2.1.3

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

end of thread, other threads:[~2014-12-23  8:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-19 17:51 [Buildroot] [PATCH v4] Makefile: improve detection of make "-s" flag Fabio Porcedda
2014-11-28 13:10 ` Fabio Porcedda
2014-12-03 18:17 ` Yann E. MORIN
2014-12-09 17:48   ` Fabio Porcedda
2014-12-23  8:58     ` Fabio Porcedda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox