diff options
author | Jan Engelhardt <[email protected]> | 2013-03-30 03:33:09 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-04-02 11:08:46 -0700 |
commit | 83918aebe5547370b6d377aa2d17f378c44054b7 (patch) | |
tree | b79790a2f9d6c7ce830d3df295656352744b2bc6 | |
parent | a9e86ac4fd080328742a52362110c1d344fb2799 (diff) |
build: do not call boilerplate ourself
Rationale see section 3.5 "Using `autoreconf' to Update `configure'
Scripts" of the autoconf manual.
Signed-off-by: Jan Engelhardt <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
-rw-r--r-- | Makefile.am | 3 | ||||
-rwxr-xr-x | autogen.sh | 7 | ||||
-rw-r--r-- | config/.gitignore | 2 | ||||
-rw-r--r-- | configure.ac | 1 |
4 files changed, 8 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index cea9db97b..23dc2572a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,6 @@ + +ACLOCAL_AMFLAGS = -I config + include $(top_srcdir)/config/rpm.am include $(top_srcdir)/config/deb.am include $(top_srcdir)/config/tgz.am diff --git a/autogen.sh b/autogen.sh index 343265c83..427394af4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,7 +1,4 @@ #!/bin/sh -aclocal -I config -libtoolize --automake --copy -autoheader -automake --add-missing --include-deps --copy -autoconf +autoreconf -fiv +rm -Rf autom4te.cache diff --git a/config/.gitignore b/config/.gitignore index dcd88d7c6..12e6ecab1 100644 --- a/config/.gitignore +++ b/config/.gitignore @@ -4,3 +4,5 @@ /install-sh /ltmain.sh /missing +/libtool.m4 +/lt*.m4 diff --git a/configure.ac b/configure.ac index f9cd54297..76184b431 100644 --- a/configure.ac +++ b/configure.ac @@ -28,6 +28,7 @@ AC_INIT AC_LANG(C) SPL_AC_META AC_CONFIG_AUX_DIR([config]) +AC_CONFIG_MACRO_DIR([config]) AC_CANONICAL_SYSTEM AM_MAINTAINER_MODE AM_SILENT_RULES |