We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent52e1b1b commitc3d9a66Copy full SHA for c3d9a66
src/Makefile.global.in
@@ -898,7 +898,7 @@ GENHTML_TITLE = PostgreSQL $(VERSION)
898
899
coverage-html-stamp: lcov_base.info lcov_test.info
900
rm -rf coverage
901
-$(GENHTML)$(GENHTML_FLAGS) -o coverage --title='$(GENHTML_TITLE)' --num-spaces=4--prefix='$(abs_top_srcdir)'$^
+$(GENHTML)$(GENHTML_FLAGS) -o coverage --title='$(GENHTML_TITLE)' --num-spaces=4$^
902
touch$@
903
904
LCOV += --gcov-tool$(GCOV)
@@ -907,12 +907,12 @@ LCOVFLAGS = -q --no-external
907
all_gcno_files =$(shell find . -name '*.gcno' -print)
908
909
lcov_base.info:$(all_gcno_files)
910
-$(LCOV)$(LCOVFLAGS) -c -i -d. -o$@
+$(LCOV)$(LCOVFLAGS) -c -i -d. -d$(srcdir) -o$@
911
912
all_gcda_files =$(shell find . -name '*.gcda' -print)
913
914
lcov_test.info:$(all_gcda_files)
915
-$(LCOV)$(LCOVFLAGS) -c -d. -o$@
+$(LCOV)$(LCOVFLAGS) -c -d. -d$(srcdir) -o$@
916
917
918
# hook for clean-up