blob: ef6afad9bcf581de51d5c40d537ff63050c22128 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001[PATCH] define the collectd dependence
2
3Upstream-Status: Pending
4
5libavltree.la libcommon.la libheap.la are created dynamically, and in LDADD,
6but not in DEPENDENCIES
7
8Signed-off-by: Roy Li <rongqing.li@windriver.com>
9---
10 src/daemon/Makefile.am | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am
14index 10860ec..7f826e3 100644
15--- a/src/daemon/Makefile.am
16+++ b/src/daemon/Makefile.am
17@@ -49,7 +49,7 @@ collectd_CPPFLAGS = $(AM_CPPFLAGS) $(LTDLINCL)
18 collectd_CFLAGS = $(AM_CFLAGS)
19 collectd_LDFLAGS = -export-dynamic
20 collectd_LDADD = libavltree.la libcommon.la libheap.la -lm
21-collectd_DEPENDENCIES =
22+collectd_DEPENDENCIES = libavltree.la libcommon.la libheap.la
23
24 # Link to these libraries..
25 if BUILD_WITH_LIBRT
26--
271.9.1
28