1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: =?utf-8?q?Ferenc_W=C3=A1gner?= <wferi@debian.org>
Date: Wed, 7 Dec 2016 14:44:51 +0100
Subject: LTLIBOBJS is also a Make variable
So let's use the more friendly syntax.
---
lib/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 06fb2fa..cb81787 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -40,7 +40,7 @@ source_to_lint = util.c hdb.c ringbuffer.c ringbuffer_helper.c \
map.c skiplist.c hashtable.c trie.c
libqb_la_SOURCES = $(source_to_lint) unix.c
-libqb_la_LIBADD = @LTLIBOBJS@
+libqb_la_LIBADD = $(LTLIBOBJS)
AM_LDFLAGS = $(LDFLAGS_COPY:-Bsymbolic-functions=)
|