From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16599 invoked by alias); 29 Mar 2010 14:06:07 -0000 Received: (qmail 16585 invoked by uid 9737); 29 Mar 2010 14:06:06 -0000 Date: Mon, 29 Mar 2010 14:06:00 -0000 Message-ID: <20100329140606.16583.qmail@sourceware.org> From: zkabelac@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 Makefile.in Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2010-03/txt/msg00080.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: zkabelac@sourceware.org 2010-03-29 14:06:06 Modified files: . : Makefile.in Log message: Avoid hard sed replacement - i.e. quick test change in make.tmpl could avoid recofiguration steps in same debug cases. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.42&r2=1.43 --- LVM2/Makefile.in 2009/10/02 19:10:31 1.42 +++ LVM2/Makefile.in 2010/03/29 14:06:06 1.43 @@ -88,7 +88,7 @@ check: all $(MAKE) -C test all -ifneq ("@LCOV@", "") +ifneq ("$(LCOV)", "") .PHONY: lcov-reset lcov lcov-dated ifeq ($(MAKECMDGOALS),lcov-dated) @@ -116,7 +116,7 @@ -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