summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2008-12-04 07:02:56 +0000
committerPeter Eisentraut <peter_e@gmx.net>2008-12-04 07:02:56 +0000
commit754e6833ee8549b1a03e87ff6831e05c7f95e246 (patch)
treed53be23fc065de9c71a379d8927af7673c75a031 /GNUmakefile.in
parent98be3b49beb1a14b220f5f0623ecf68a1445d184 (diff)
downloadpostgresql-754e6833ee8549b1a03e87ff6831e05c7f95e246.tar.gz
Call genhtml with --prefix option so local build paths don't appear in the
coverage output.
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r--GNUmakefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
index 4335c12b00..f5ef46adeb 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -1,7 +1,7 @@
#
# PostgreSQL top level makefile
#
-# $PostgreSQL: pgsql/GNUmakefile.in,v 1.48 2008/09/05 12:11:17 petere Exp $
+# $PostgreSQL: pgsql/GNUmakefile.in,v 1.49 2008/12/04 07:02:56 petere Exp $
#
subdir =
@@ -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