From a6fd031927073fda5e55a1ec3046592b688d325f Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 29 Mar 2010 14:06:06 +0000 Subject: [PATCH] Avoid hard sed replacement - i.e. quick test change in make.tmpl could avoid recofiguration steps in same debug cases. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 556d1ff0d..7c93aed5b 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