1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Avoid hard sed replacement - i.e. quick test change in make.tmpl

could avoid recofiguration steps in same debug cases.
This commit is contained in:
Zdenek Kabelac 2010-03-29 14:06:06 +00:00
parent 2384a25499
commit a6fd031927

View File

@ -88,7 +88,7 @@ endif
check: all
$(MAKE) -C test all
ifneq ("@LCOV@", "")
ifneq ("$(LCOV)", "")
.PHONY: lcov-reset lcov lcov-dated
ifeq ($(MAKECMDGOALS),lcov-dated)
@ -116,7 +116,7 @@ lcov: all
-a $(LCOV_REPORTS_DIR)/libdm.info \
-a $(LCOV_REPORTS_DIR)/tools.info \
-o $(LCOV_REPORTS_DIR)/lvm.info
ifneq ("@GENHTML@", "")
ifneq ("$(GENHTML)", "")
$(GENHTML) -o $(LCOV_REPORTS_DIR) -p $(top_srcdir) $(LCOV_REPORTS_DIR)/lvm.info
endif