Message ID | alpine.LNX.2.00.1106271932480.13060@linux (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, Jun 27, 2011 at 07:33:54PM -0400, Peter Foley wrote: > > This patch silences the "make -C /usr/src/git O=/usr/src/git/build/." > message shown when using the generated makefile in KBUILD_OUTDIR. > > > Signed-off-by: Peter Foley <pefoley2@verizon.net> > --- > > V2: Show message when V=1 > > scripts/mkmakefile | 6 +++++- > 1 files changed, 5 insertions(+), 1 deletions(-) > > diff --git a/scripts/mkmakefile b/scripts/mkmakefile > index 5325423..ea26f37 100644 > --- a/scripts/mkmakefile > +++ b/scripts/mkmakefile > @@ -30,6 +30,10 @@ PATCHLEVEL = $4 > lastword = \$(word \$(words \$(1)),\$(1)) > makedir := \$(dir \$(call lastword,\$(MAKEFILE_LIST))) > > +ifneq (\$(V),1) > +Q := @ > +endif Please check if V=1 is passed on the commandline and not set in the environmnent, like the toplevel Makefile does: ifeq ("$(origin V)", "command line") ... Michal -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/scripts/mkmakefile b/scripts/mkmakefile index 5325423..ea26f37 100644 --- a/scripts/mkmakefile +++ b/scripts/mkmakefile @@ -30,6 +30,10 @@ PATCHLEVEL = $4 lastword = \$(word \$(words \$(1)),\$(1)) makedir := \$(dir \$(call lastword,\$(MAKEFILE_LIST))) +ifneq (\$(V),1) +Q := @ +endif + MAKEARGS := -C $1 MAKEARGS += O=\$(if \$(patsubst /%,,\$(makedir)),\$(CURDIR)/)\$(patsubst %/,%,\$(makedir)) @@ -40,7 +44,7 @@ MAKEFLAGS += --no-print-directory all := \$(filter-out all Makefile,\$(MAKECMDGOALS)) all: - \$(MAKE) \$(MAKEARGS) \$(all) + \$(Q)\$(MAKE) \$(MAKEARGS) \$(all) Makefile:;
This patch silences the "make -C /usr/src/git O=/usr/src/git/build/." message shown when using the generated makefile in KBUILD_OUTDIR. Signed-off-by: Peter Foley <pefoley2@verizon.net> --- V2: Show message when V=1 scripts/mkmakefile | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-)