summaryrefslogtreecommitdiffstats
path: root/output/dbi
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-02-01 02:41:27 +0100
committerJan Engelhardt <jengelh@medozas.de>2011-02-01 02:51:54 +0100
commitbf85255e1c813ef208eee77079f14eb5ebe766de (patch)
tree7a74599e116ea53cf6a40bf31cb516b08e549682 /output/dbi
parent6c21436c119cd7ba053937229aeb09dfd25925c2 (diff)
build: avoid use of LIBS variable
The variable contains global libraries linked into every possible object, which is unwanted. Clean up things. Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'output/dbi')
-rw-r--r--output/dbi/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/output/dbi/Makefile.am b/output/dbi/Makefile.am
index 1ee8f2a..f413cab 100644
--- a/output/dbi/Makefile.am
+++ b/output/dbi/Makefile.am
@@ -1,13 +1,13 @@
AM_CPPFLAGS = -I$(top_srcdir)/include $(DBI_INC)
AM_CFLAGS = ${regular_CFLAGS}
-LIBS=$(DBI_LIB)
if HAVE_DBI
pkglib_LTLIBRARIES = ulogd_output_DBI.la
ulogd_output_DBI_la_SOURCES = ulogd_output_DBI.c ../../util/db.c
+ulogd_output_DBI_la_LIBADD = ${DBI_LIB}
ulogd_output_DBI_la_LDFLAGS = -avoid-version -module
endif