summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2019-11-15 09:52:39 +0100
committerAleksander Morgado <aleksander@aleksander.es>2019-11-15 10:35:19 +0100
commit64b31d64c6824e33082cd947989f060be4b87d2f (patch)
treeecc6ef13661384784b03368a68a8899b1b0d8261
parent288fb2e700cc8963576598324eefc804d7f647d8 (diff)
build,test: fix order of included libraries
Symbols are resolved forward, so if libhelpers depends on libmm-glib, it needs to be specified first. (cherry picked from commit 42dab8e827d84b86d0f7253ce68748758f29aef1)
-rw-r--r--test/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 20e2a068..ba737bc5 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -87,8 +87,8 @@ mmsmspdu_CPPFLAGS = \
mmsmspdu_LDADD = \
$(MM_LIBS) \
- $(top_builddir)/libmm-glib/libmm-glib.la \
$(top_builddir)/src/libhelpers.la \
+ $(top_builddir)/libmm-glib/libmm-glib.la \
$(NULL)
################################################################################
@@ -112,8 +112,8 @@ mmsmsmonitor_CPPFLAGS = \
mmsmsmonitor_LDADD = \
$(MM_LIBS) \
- $(top_builddir)/libmm-glib/libmm-glib.la \
$(top_builddir)/src/libhelpers.la \
+ $(top_builddir)/libmm-glib/libmm-glib.la \
$(NULL)
################################################################################