diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-12-11 16:09:25 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-12-11 16:11:44 +0100 |
commit | 3eb623e73b546a444c1fc717f4ed105b3b2d5eae (patch) | |
tree | 37d4e9f7d547f5bdfcfe5786a23cedd8cd7c8d88 | |
parent | 42aa9cc2f6d4de62e180e6f2b4b8989da009490b (diff) |
build: fix order of linked libs in test apps
Solving build issues with truly strict linkers, as in:
http://lists.busybox.net/pipermail/buildroot/2019-December/268817.html
-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 ba737bc5..20e2a068 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -87,8 +87,8 @@ mmsmspdu_CPPFLAGS = \ mmsmspdu_LDADD = \ $(MM_LIBS) \ - $(top_builddir)/src/libhelpers.la \ $(top_builddir)/libmm-glib/libmm-glib.la \ + $(top_builddir)/src/libhelpers.la \ $(NULL) ################################################################################ @@ -112,8 +112,8 @@ mmsmsmonitor_CPPFLAGS = \ mmsmsmonitor_LDADD = \ $(MM_LIBS) \ - $(top_builddir)/src/libhelpers.la \ $(top_builddir)/libmm-glib/libmm-glib.la \ + $(top_builddir)/src/libhelpers.la \ $(NULL) ################################################################################ |