From 7fb280ceacbacf6d0fb02ba1378e2caef2c8c582 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Fri, 30 Nov 2018 12:54:34 +0100 Subject: makefiles: ignore missing files --- Makefile.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 85dfeac4c..dd8a52682 100644 --- a/Makefile.in +++ b/Makefile.in @@ -165,9 +165,11 @@ ifneq ("$(GENHTML)", "") lcov: $(RM) -rf $(LCOV_REPORTS_DIR) $(MKDIR_P) $(LCOV_REPORTS_DIR) - $(LCOV) --capture --directory $(top_builddir) --output-file $(LCOV_REPORTS_DIR)/out.info - -test !-s $(LCOV_REPORTS_DIR)/out.info || \ - $(GENHTML) -o $(LCOV_REPORTS_DIR) --ignore-errors source $(LCOV_REPORTS_DIR)/out.info + $(LCOV) --capture --directory $(top_builddir) --ignore-errors source \ + --output-file $(LCOV_REPORTS_DIR)/out.info + -test ! -s $(LCOV_REPORTS_DIR)/out.info || \ + $(GENHTML) -o $(LCOV_REPORTS_DIR) --ignore-errors source \ + $(LCOV_REPORTS_DIR)/out.info endif endif -- cgit v1.2.1