neels has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-pfcp/+/31741 )
Change subject: build: fix linking gen__pfcp_ies_auto to use build-tree libosmo-gtlv ......................................................................
build: fix linking gen__pfcp_ies_auto to use build-tree libosmo-gtlv
When a locally built lib is not the first in LDFLAGS, libtool prefers a system installed lib over the locally built one. By using LDADD for gen__pfcp_ies_auto, the local lib gets appended, not listed first.
Change LDADD to LDFLAGS to make sure libtool is using the locally built libosmo-gtlv for gen__pfcp_ies_auto.
Related: OS#5942 Change-Id: I2e92238b214d8e79bab1095d6093139bad05bc66 --- M src/libosmo-pfcp/Makefile.am 1 file changed, 18 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-pfcp refs/changes/41/31741/1
diff --git a/src/libosmo-pfcp/Makefile.am b/src/libosmo-pfcp/Makefile.am index 578ac0b..5d53923 100644 --- a/src/libosmo-pfcp/Makefile.am +++ b/src/libosmo-pfcp/Makefile.am @@ -65,7 +65,7 @@ gen__pfcp_ies_auto.c \ $(NULL)
-gen__pfcp_ies_auto_LDADD = \ +gen__pfcp_ies_auto_LDFLAGS = \ $(top_builddir)/src/libosmo-gtlv/libosmo-gtlv.la \ $(LIBOSMOCORE_LIBS) \ $(COVERAGE_LDFLAGS) \