diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-12-12 14:53:44 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-12-12 14:53:44 +0100 |
commit | f9e26fb54b96921fcb5f3cc7647ba4c4ff14085f (patch) | |
tree | b80de847c7b64c008ac90333291e3f2c3156f04c | |
parent | 3eb623e73b546a444c1fc717f4ed105b3b2d5eae (diff) |
Revert "build: fix order of linked libs in test apps"
This reverts commit 3eb623e73b546a444c1fc717f4ed105b3b2d5eae.
This change is plain wrong. The correct order was already fixed in
commit 42dab8e8.
-rw-r--r-- | test/Makefile.am | 4 |
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) ################################################################################ |