From: Peter Eisentraut Date: Thu, 4 Dec 2008 07:02:56 +0000 (+0000) Subject: Call genhtml with --prefix option so local build paths don't appear in the X-Git-Tag: recoveryinfrav9~241 X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=215bb2a825ab73900f9574147afc5ebacbad7e0e;p=users%2Fsimon%2Fpostgres.git Call genhtml with --prefix option so local build paths don't appear in the coverage output. --- diff --git a/GNUmakefile.in b/GNUmakefile.in index 74bb088010..b00fe27b36 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -70,7 +70,7 @@ coverage: coverage-html: coverage rm -rf coverage mkdir coverage - $(GENHTML) --show-details --legend --output-directory=coverage --title=PostgreSQL --num-spaces=4 `find src/backend -name lcov.info -print` + $(GENHTML) --show-details --legend --output-directory=coverage --title=PostgreSQL --num-spaces=4 --prefix=$(abs_top_srcdir)/src `find src/backend -name lcov.info -print` ifeq ($(enable_coverage),yes) clean distclean maintainer-clean: clean-coverage-local