neels has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/29118 )
Change subject: make: fix -l order: first libosmo-pfcp, then -gtlv ......................................................................
make: fix -l order: first libosmo-pfcp, then -gtlv
During debian package building on OBS, the package build fails if libosmo-gtlv is listed before libosmo-pfcp.
Change-Id: Ibbddef02edbd6eb58828ca496f3b36613d4285fc --- M src/osmo-hnbgw/Makefile.am 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hnbgw refs/changes/18/29118/1
diff --git a/src/osmo-hnbgw/Makefile.am b/src/osmo-hnbgw/Makefile.am index 1d907ba..3f397ec 100644 --- a/src/osmo-hnbgw/Makefile.am +++ b/src/osmo-hnbgw/Makefile.am @@ -62,12 +62,12 @@
if ENABLE_PFCP AM_CFLAGS += \ - $(LIBOSMOGTLV_CFLAGS) \ $(LIBOSMOPFCP_CFLAGS) \ + $(LIBOSMOGTLV_CFLAGS) \ $(NULL) osmo_hnbgw_LDADD += \ - $(LIBOSMOGTLV_LIBS) \ $(LIBOSMOPFCP_LIBS) \ + $(LIBOSMOGTLV_LIBS) \ $(NULL) osmo_hnbgw_SOURCES += \ hnbgw_pfcp.c \