fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-pfcp/+/28900 )
Change subject: configure: fix AC_CONFIG_MACRO_DIRS related warnings
......................................................................
configure: fix AC_CONFIG_MACRO_DIRS related warnings
Create m4/.gitkeep to eliminate the following warning:
aclocal: warning: couldn't open directory 'm4': No such file or directory
Add 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac to as suggested:
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac
Change-Id: Id9d605490c4b403b99ed54745838cc9f242030c3
---
M configure.ac
A m4/.gitkeep
2 files changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-pfcp refs/changes/00/28900/1
diff --git a/configure.ac b/configure.ac
index 4391ff9..8d0ebb1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,6 +6,7 @@
AC_CONFIG_AUX_DIR([.])
AM_INIT_AUTOMAKE([dist-bzip2])
+AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_TESTDIR(tests)
CFLAGS="$CFLAGS -std=gnu11"
diff --git a/m4/.gitkeep b/m4/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/m4/.gitkeep
--
To view, visit
https://gerrit.osmocom.org/c/libosmo-pfcp/+/28900
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-pfcp
Gerrit-Branch: master
Gerrit-Change-Id: Id9d605490c4b403b99ed54745838cc9f242030c3
Gerrit-Change-Number: 28900
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange