summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 09a6766)
raw | patch | inline | side by side (parent: 09a6766)
author | Clemens Lang <neverpanic@gmail.com> | |
Sat, 10 Mar 2012 01:30:26 +0000 (02:30 +0100) | ||
committer | Florian Forster <octo@collectd.org> | |
Wed, 14 Mar 2012 06:44:47 +0000 (07:44 +0100) |
When building on OS X, the collectd build failed, because the collectd target
has a dependency on "-lltdl", which is the value the variable $(LIBLTDL) has.
Obviously, this should be the file name instead. I am however not sure how to
specify the correct filename in this case.
Fixes GitHub issue #54.
Signed-off-by: Florian Forster <octo@collectd.org>
has a dependency on "-lltdl", which is the value the variable $(LIBLTDL) has.
Obviously, this should be the file name instead. I am however not sure how to
specify the correct filename in this case.
Fixes GitHub issue #54.
Signed-off-by: Florian Forster <octo@collectd.org>
src/Makefile.am | patch | blob | history |
diff --git a/src/Makefile.am b/src/Makefile.am
index 0c427dc86686ddcb32c8816a27f3d6861ce20fcc..fd85107f1dec4a539e49d177a222c08024cb5df7 100644 (file)
--- a/src/Makefile.am
+++ b/src/Makefile.am
if BUILD_WITH_OWN_LIBOCONFIG
collectd_LDADD += $(LIBLTDL) liboconfig/liboconfig.la
-collectd_DEPENDENCIES += $(LIBLTDL) liboconfig/liboconfig.la
+collectd_DEPENDENCIES += liboconfig/liboconfig.la
else
collectd_LDADD += -loconfig
endif