From 599b3ed89e796b029cccf1ccfe9ad18bf04419fa Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 10 Aug 2017 23:33:47 -0400 Subject: [PATCH v2 6/9] Run coverage commands quietly They are very chatty by default, but the output doesn't seem all that useful for normal operation. --- src/Makefile.global.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 4b2aa2ae0f..e9d89005ec 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -874,8 +874,8 @@ endif # enable_nls ifeq ($(enable_coverage), yes) LCOV += --gcov-tool $(GCOV) -LCOVFLAGS = --no-external -GENHTML_FLAGS = --legend +LCOVFLAGS = -q --no-external +GENHTML_FLAGS = -q --legend GENHTML_TITLE = PostgreSQL $(VERSION) gcno_files = $(shell find . -name '*.gcno' -print) -- 2.14.1