From 2a9a80c9bb71e35c877265e61ef0e06eb7365167 Mon Sep 17 00:00:00 2001 From: Petr Rockai Date: Wed, 9 Jul 2008 09:59:42 +0000 Subject: Fix dmeventd regression where mirror and snapshot monitoring libraries failed to link against liblvm2cmd. Dmeventd DSOs *require* lvm2cmd to be linked in. For the future: 1) AC_SUBST does not create Makefile variables, only @foo@-style substitutions 2) When using `test', whitespace around `=' is essential: test a=b is true, as is test a=a --- daemons/dmeventd/plugins/mirror/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'daemons/dmeventd/plugins/mirror') diff --git a/daemons/dmeventd/plugins/mirror/Makefile.in b/daemons/dmeventd/plugins/mirror/Makefile.in index baa0a5c8..68c15c8d 100644 --- a/daemons/dmeventd/plugins/mirror/Makefile.in +++ b/daemons/dmeventd/plugins/mirror/Makefile.in @@ -17,7 +17,7 @@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ INCLUDES += -I${top_srcdir}/tools -CLDFLAGS += -L${top_srcdir}/tools -ldevmapper $(LVM2CMD_LIB) +CLDFLAGS += -L${top_srcdir}/tools -ldevmapper @LVM2CMD_LIB@ SOURCES = dmeventd_mirror.c -- cgit