On Tue, Jan 23, 2018 at 5:47 PM, Daniel P. Berrange <berra...@redhat.com> wrote: > The make rules for building QEMU are mostly silent by default. They can > be made verbose by setting the variable V=1. The default state does not > however correspond to a V=0 setting - $(V) must be undefined / empty to > get the default quiet build. > > Signed-off-by: Daniel P. Berrange <berra...@redhat.com>
(with that, qemu build-sys differs from automake & kernel at least) Reviewed-by: Marc-André Lureau <marcandre.lur...@redhat.com> > --- > Makefile | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/Makefile b/Makefile > index c263190b8d..554ba69ced 100644 > --- a/Makefile > +++ b/Makefile > @@ -940,4 +940,5 @@ ifdef QEMU_GA_MSI_ENABLED > endif > @echo '' > endif > - @echo ' $(MAKE) V=0|1 [targets] 0 => quiet build (default), 1 => > verbose build' > + @echo ' $(MAKE) [targets] (quiet build, default)' > + @echo ' $(MAKE) V=1 [targets] (verbose build)' > -- > 2.14.3 >