neels has uploaded this change for review.

View Change

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 \

To view, visit change 29118. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: Ibbddef02edbd6eb58828ca496f3b36613d4285fc
Gerrit-Change-Number: 29118
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr@sysmocom.de>
Gerrit-MessageType: newchange