mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 13:03:33 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user