From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15804 invoked by alias); 1 Sep 2011 17:56:54 -0000 Received: (qmail 15786 invoked by uid 9447); 1 Sep 2011 17:56:54 -0000 Date: Thu, 01 Sep 2011 17:56:00 -0000 Message-ID: <20110901175654.15784.qmail@sourceware.org> From: agk@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2/daemons 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: 2011-09/txt/msg00006.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: agk@sourceware.org 2011-09-01 17:56:53 Modified files: daemons : Makefile.in Log message: Only build libdaemon.a when we need it at the moment. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/daemons/Makefile.in.diff?cvsroot=lvm2&r1=1.17&r2=1.18 --- LVM2/daemons/Makefile.in 2011/08/31 11:31:58 1.17 +++ LVM2/daemons/Makefile.in 2011/09/01 17:56:53 1.18 @@ -15,8 +15,10 @@ top_srcdir = @top_srcdir@ top_builddir = @top_builddir@ +ifeq ("@BUILD_LVMETAD@", "yes") LIB_STATIC=libdaemon.a SOURCES = common/daemon-shared.c common/daemon-server.c common/daemon-client.c +endif .PHONY: dmeventd clvmd cmirrord lvmetad @@ -30,6 +32,7 @@ ifeq ("@BUILD_LVMETAD@", "yes") SUBDIRS += lvmetad +device-mapper: libdaemon.a endif ifeq ("@BUILD_DMEVENTD@", "yes") @@ -48,5 +51,3 @@ ifeq ("@BUILD_DMEVENTD@", "yes") device-mapper: dmeventd.device-mapper endif - -device-mapper: libdaemon.a