fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-pcu/+/31838 )
Change subject: tests/Makefile.am: do not overwrite global LDFLAGS
......................................................................
tests/Makefile.am: do not overwrite global LDFLAGS
We still want -no-install to be used for these tests.
Change-Id: I926df1918fd24ea7be4b390d168a8c76ef9931c0
---
M tests/Makefile.am
1 file changed, 21 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/38/31838/1
diff --git a/tests/Makefile.am b/tests/Makefile.am
index df63dd1..1c7b072 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -57,7 +57,10 @@
$(LIBOSMOCTRL_LIBS) \
$(LDADD) \
$(NULL)
-tbf_TbfTest_LDFLAGS = -Wl,--wrap=pcu_sock_send
+tbf_TbfTest_LDFLAGS = \
+ -Wl,--wrap=pcu_sock_send \
+ $(AM_LDFLAGS) \
+ $(NULL)
bitcomp_BitcompTest_SOURCES = bitcomp/BitcompTest.cpp ../src/egprs_rlc_compression.cpp
bitcomp_BitcompTest_LDADD = \
@@ -105,7 +108,9 @@
$(NULL)
ms_MsTest_LDFLAGS = \
- -Wl,-u,bssgp_prim_cb
+ -Wl,-u,bssgp_prim_cb \
+ $(AM_LDFLAGS) \
+ $(NULL)
llc_LlcTest_SOURCES = llc/LlcTest.cpp
llc_LlcTest_LDADD = \
@@ -117,7 +122,9 @@
$(NULL)
llc_LlcTest_LDFLAGS = \
- -Wl,-u,bssgp_prim_cb
+ -Wl,-u,bssgp_prim_cb \
+ $(AM_LDFLAGS) \
+ $(NULL)
llist_LListTest_SOURCES = llist/LListTest.cpp
llist_LListTest_LDADD = \
--
To view, visit
https://gerrit.osmocom.org/c/osmo-pcu/+/31838
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Change-Id: I926df1918fd24ea7be4b390d168a8c76ef9931c0
Gerrit-Change-Number: 31838
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange