aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-10-16 17:19:13 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-10-16 17:19:13 +0200
commit25c83611be697f53925184658cdbff72de58c8c6 (patch)
treef2d35637244da61b38b25f50a5f9710e56d714ce /tests
parent43f4e088414636bad83176b891ba25cf65fed859 (diff)
misc: Linker fix for Ubuntu 11.10
--as-needed was default in Natty and somehow got more strict in this version of Ubuntu. Link to osmo vty.
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 26500a1..19db4f8 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -26,4 +26,5 @@ e1inp_hsl_bts_test_LDADD = $(top_builddir)/src/libosmoabis.la \
ipa_proxy_test_SOURCES = ipa_proxy_test.c
ipa_proxy_test_LDADD = $(top_builddir)/src/libosmoabis.la \
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
+ $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOVTY_LIBS)