tests/smpp: Fix linking order

At least when using system-wide libtalloc, the LIBOSMOCORE_LIBS
must come last, after the static libraries under libcommon.
This commit is contained in:
Harald Welte 2015-11-21 15:43:29 +01:00
parent 97b6bfa996
commit 6a8cbe9718
1 changed files with 3 additions and 2 deletions

View File

@ -8,5 +8,6 @@ noinst_PROGRAMS = smpp_test
smpp_test_SOURCES = smpp_test.c \
$(top_builddir)/src/libmsc/smpp_utils.c
smpp_test_LDADD = $(LIBOSMOCORE_LIBS) \
$(top_builddir)/src/libcommon/libcommon.a
smpp_test_LDADD = \
$(top_builddir)/src/libcommon/libcommon.a \
$(LIBOSMOCORE_LIBS)