link unixsock against libcmds
authorPiotr Popieluch <piotr1212@gmail.com>
Sat, 14 Jan 2017 00:22:46 +0000 (01:22 +0100)
committerPiotr 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.

Makefile.am

index 323e17c..805733e 100644 (file)
@@ -1616,7 +1616,7 @@ if BUILD_PLUGIN_UNIXSOCK
 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