summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2010-03-29 14:06:06 +0000
committerZdenek Kabelac <zkabelac@redhat.com>2010-03-29 14:06:06 +0000
commita6fd031927073fda5e55a1ec3046592b688d325f (patch)
treeb39e61d691da5579639d62618f55ada113e6e707 /Makefile.in
parent2384a254996c2e7dde0b7d7daab3cbf706f59a9f (diff)
downloadlvm2-a6fd031927073fda5e55a1ec3046592b688d325f.tar.gz
lvm2-a6fd031927073fda5e55a1ec3046592b688d325f.tar.xz
lvm2-a6fd031927073fda5e55a1ec3046592b688d325f.zip
Avoid hard sed replacement - i.e. quick test change in make.tmpl
could avoid recofiguration steps in same debug cases.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 556d1ff0..7c93aed5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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