aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2018-12-17 10:28:21 +0100
committerosmith <osmith@sysmocom.de>2018-12-17 09:43:45 +0000
commit42c165605a00f290d16f1de805604eb76e2fc753 (patch)
tree95028a6416a7d4297a2e6fba338fbc78f62004d7
parentaffd3517878327e6177fbdbcf977a55be150898d (diff)
LMSDeviceTest: fix link errors on OBS
Link LMSDeviceTest against LMS_LIBS, so it does not only compile on Debian, but also on Ubuntu and openSUSE. Thanks to roox for figuring this out. Related: OS#3654 Change-Id: I6980d4290f623485a77db10fea6d17de0321c092
-rw-r--r--tests/Transceiver52M/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Transceiver52M/Makefile.am b/tests/Transceiver52M/Makefile.am
index df3ae57..1f8aa7a 100644
--- a/tests/Transceiver52M/Makefile.am
+++ b/tests/Transceiver52M/Makefile.am
@@ -23,6 +23,7 @@ LMSDeviceTest_SOURCES = LMSDeviceTest.cpp
LMSDeviceTest_LDFLAGS = $(LIBOSMOCORE_LIBS) $(LMS_LIBS)
LMSDeviceTest_LDADD = \
$(top_builddir)/Transceiver52M/device/lms/libdevice.la \
- $(COMMON_LA)
+ $(COMMON_LA) \
+ $(LMS_LIBS)
LMSDeviceTest_CPPFLAGS = $(AM_CPPFLAGS) $(LMS_CFLAGS)
endif