fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-netif/+/31776 )
Change subject: tests/Makefile.am: clean up AM_* variables
......................................................................
tests/Makefile.am: clean up AM_* variables
* -I is a preprocessor flag, so it should be in AM_CPPFLAGS
* $(LIBOSMOCORE_LDFLAGS) is not defined here, remove it
Change-Id: Ice892f848e06b601e67b06a4e1e25c11fb7c4128
---
M tests/Makefile.am
1 file changed, 15 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/76/31776/1
diff --git a/tests/Makefile.am b/tests/Makefile.am
index c43419b..cc33960 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,5 +1,6 @@
-AM_CFLAGS = -Wall -I$(top_srcdir)/include $(LIBOSMOCORE_CFLAGS) -g
-AM_LDFLAGS = $(LIBOSMOCORE_LDFLAGS) -no-install
+AM_CPPFLAGS = -I$(top_srcdir)/include
+AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) -g
+AM_LDFLAGS = -no-install
LDADD = \
$(top_builddir)/src/libosmonetif.la \
--
To view, visit
https://gerrit.osmocom.org/c/libosmo-netif/+/31776
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: Ice892f848e06b601e67b06a4e1e25c11fb7c4128
Gerrit-Change-Number: 31776
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange