Skip to content

Commit 8c39262

Browse files
jengelhbehlendorf
authored andcommitted
build: do not call boilerplate ourself
Rationale see section 3.5 "Using `autoreconf' to Update `configure' Scripts" of the autoconf manual. http://www.gnu.org/software/autoconf/manual/autoconf-2.67/html_node/autoreconf-Invocation.html Signed-off-by: Jan Engelhardt <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]>
1 parent ea0fcfc commit 8c39262

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Makefile.am

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
ACLOCAL_AMFLAGS = -I config
3+
14
include $(top_srcdir)/config/rpm.am
25
include $(top_srcdir)/config/deb.am
36
include $(top_srcdir)/config/tgz.am

autogen.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
#!/bin/sh
22

3-
aclocal -I config
4-
libtoolize --automake --copy
5-
autoheader
6-
automake --add-missing --include-deps --copy
7-
autoconf
3+
autoreconf -fiv
4+
rm -Rf autom4te.cache

config/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
/install-sh
55
/ltmain.sh
66
/missing
7+
/libtool.m4
8+
/lt*.m4

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ AC_INIT
3434
AC_LANG(C)
3535
ZFS_AC_META
3636
AC_CONFIG_AUX_DIR([config])
37+
AC_CONFIG_MACRO_DIR([config])
3738
AC_CANONICAL_SYSTEM
3839
AM_MAINTAINER_MODE
3940
AM_SILENT_RULES

0 commit comments

Comments
 (0)