From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11690 invoked by alias); 22 Sep 2009 13:32:40 -0000 Received: (qmail 11674 invoked by uid 9737); 22 Sep 2009 13:32:40 -0000 Date: Tue, 22 Sep 2009 13:32:00 -0000 Message-ID: <20090922133240.11672.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: 2009-09/txt/msg00066.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: zkabelac@sourceware.org 2009-09-22 13:32:39 Modified files: . : Makefile.in Log message: Minor replace of of ${top_srcdir} with $(top_srcdir) for lcov target Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.38&r2=1.39 --- LVM2/Makefile.in 2009/09/15 15:37:12 1.38 +++ LVM2/Makefile.in 2009/09/22 13:32:39 1.39 @@ -105,7 +105,7 @@ lcov: all $(RM) -rf $(LCOV_REPORTS_DIR) $(MKDIR_P) $(LCOV_REPORTS_DIR) - $(LCOV) -b ${top_srcdir}/libdm -d $(top_srcdir)/libdm -c -o $(LCOV_REPORTS_DIR)/libdm.info + $(LCOV) -b $(top_srcdir)/libdm -d $(top_srcdir)/libdm -c -o $(LCOV_REPORTS_DIR)/libdm.info $(LCOV) -b $(top_srcdir)/lib -d $(top_srcdir)/lib -c -o $(LCOV_REPORTS_DIR)/lib.info $(LCOV) -b $(top_srcdir)/tools -d $(top_srcdir)/tools -c -o $(LCOV_REPORTS_DIR)/tools.info DMEVENTD_INFO="$(LCOV_REPORTS_DIR)/dmeventd.info" ;\