From: Tobias Brunner Date: Tue, 11 Mar 2014 13:19:59 +0000 (+0100) Subject: coverage: Make genhtml not fail if sources are not found X-Git-Tag: 5.2.0dr4~1^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b98551c74a6a8ee8f713b0d2b47a7c654b13598b;p=thirdparty%2Fstrongswan.git coverage: Make genhtml not fail if sources are not found For some reason the .y and .l files of the settings parser are searched in the wrong directory. --- diff --git a/Makefile.am b/Makefile.am index 7e3c72b3b1..0703abc107 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,7 @@ cov-report: lcov -r $(top_builddir)/coverage/coverage.info '*/tests/*' \ -o $(top_builddir)/coverage/coverage.cleaned.info \ --rc lcov_branch_coverage=1 - genhtml --num-spaces 4 --legend --branch-coverage \ + genhtml --num-spaces 4 --legend --branch-coverage --ignore-errors source \ -t "$(PACKAGE_STRING)" \ -o $(top_builddir)/coverage/html \ -p `readlink -m $(abs_top_srcdir)`/src \