summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 76fb10b)
raw | patch | inline | side by side (parent: 76fb10b)
author | Piotr Popieluch <piotr1212@gmail.com> | |
Sat, 14 Jan 2017 00:22:46 +0000 (01:22 +0100) | ||
committer | Piotr Popieluch <piotr1212@gmail.com> | |
Sat, 14 Jan 2017 00:22:46 +0000 (01:22 +0100) |
unixsock_la_LIBS is not being processed by automake and thus being
incorrectly linked. This results in an symbol error when loading
the module. Changing to unixsock_la_LIBADD fixes this.
incorrectly linked. This results in an symbol error when loading
the module. Changing to unixsock_la_LIBADD fixes this.
Makefile.am | patch | blob | history |
diff --git a/Makefile.am b/Makefile.am
index 323e17c5293bf6d8187e91ec88bf2e7cd21bef1f..805733e64397f1747ea22704808cfc7330574550 100644 (file)
--- a/Makefile.am
+++ b/Makefile.am
pkglib_LTLIBRARIES += unixsock.la
unixsock_la_SOURCES = src/unixsock.c
unixsock_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-unixsock_la_LIBS = libcmds.la
+unixsock_la_LIBADD = libcmds.la
endif
if BUILD_PLUGIN_UPTIME