summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-01-20 12:05:54 +0100
committerJan Engelhardt <jengelh@medozas.de>2009-01-20 12:12:17 +0100
commitd3ced9d5dcdb6b42a4c887b3afbfaaaa2bc09419 (patch)
tree34e93a2257489632b0e1211c65789d09ee7d9e16
parent433135f373edde9cc9c129b28257844eb1b3642c (diff)
build: resolve autotools suggestions to use AC_CONFIG_MACRO_DIR
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
-rw-r--r--Makefile.am1
-rw-r--r--configure.in1
-rw-r--r--m4/.gitignore2
3 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index e8b1154..ac35ce3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,5 @@
+ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6
man_MANS = ulogd.8
diff --git a/configure.in b/configure.in
index 9d3f02a..141fa7d 100644
--- a/configure.in
+++ b/configure.in
@@ -4,6 +4,7 @@ AC_INIT
AM_INIT_AUTOMAKE(ulogd, 2.0.0beta2)
AM_CONFIG_HEADER(config.h)
+AC_CONFIG_MACRO_DIR([m4])
dnl Checks for programs.
AC_PROG_MAKE_SET
diff --git a/m4/.gitignore b/m4/.gitignore
new file mode 100644
index 0000000..64d9bbc
--- /dev/null
+++ b/m4/.gitignore
@@ -0,0 +1,2 @@
+/libtool.m4
+/lt*.m4