]> sourceware.org Git - lvm2.git/commitdiff
Avoid hard sed replacement - i.e. quick test change in make.tmpl
authorZdenek Kabelac <zkabelac@redhat.com>
Mon, 29 Mar 2010 14:06:06 +0000 (14:06 +0000)
committerZdenek Kabelac <zkabelac@redhat.com>
Mon, 29 Mar 2010 14:06:06 +0000 (14:06 +0000)
could avoid recofiguration steps in same debug cases.

Makefile.in

index 556d1ff0daf1d53a1a90d4d513faf99658ae9038..7c93aed5b696d12ade4367ea990370dd37d2a2c9 100644 (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
 
This page took 0.034756 seconds and 5 git commands to generate.