On 1 November 2018 at 14:26, Eric Blake <ebl...@redhat.com> wrote: > Umm, this prints a blank line even if I run 'make check V=0' - do we support > V=0 as a way to disable verbosity
Empirically, we do not. Our rules.make defines quiet-command = $(if $(V),$1,$(if $(2),@printf " %-7s %s\n" $2 $3 && $1, @$1)) which will suppress the verbose printing of command lines only if $(V) expands to the empty string, so V=0 will print verbosely here too. thanks -- PMM