summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2018-11-30 12:54:34 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2018-11-30 13:03:09 +0100
commit7fb280ceacbacf6d0fb02ba1378e2caef2c8c582 (patch)
tree67d5a1e187ee7c8b1503272f14faa17893745168 /Makefile.in
parent46f946145c7cf7b56b6414055fd6f50c0bbef702 (diff)
downloadlvm2-7fb280ceacbacf6d0fb02ba1378e2caef2c8c582.tar.gz
makefiles: ignore missing files
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 5 insertions, 3 deletions
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