diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-08-30 16:58:14 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-08-30 18:55:54 +0200 |
commit | 8381e35e240361dd7e0cd08edc6e619205d545a2 (patch) | |
tree | fe63efa3b295c0553f93a8c4bfd9d53c225be3bb | |
parent | 34c9c8f70f485727fe26a9fff5dcfa3089f07186 (diff) | |
download | coreutils-8381e35e240361dd7e0cd08edc6e619205d545a2.tar.xz |
build: require Automake >= 1.11.2
Now that we use AM_TESTS_ENVIRONMENT, we must require
Automake >= 1.11.2.
* configure.ac (AM_INIT_AUTOMAKE): Bump version requirement to 1.11.2.
* bootstrap.conf ($buildreq): Likewise.
-rw-r--r-- | bootstrap.conf | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.conf b/bootstrap.conf index eab660612..27b5302ca 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -309,7 +309,7 @@ gnulib_tool_option_extras="--tests-base=gnulib-tests --with-tests --symlink\ # Build prerequisites buildreq="\ autoconf 2.64 -automake 1.11.1 +automake 1.11.2 autopoint - bison - gettext 0.17 diff --git a/configure.ac b/configure.ac index 391b6bcfc..355dce3db 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,7 @@ AC_CONFIG_SRCDIR([src/ls.c]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([lib/config.h:lib/config.hin]) -AM_INIT_AUTOMAKE([1.11.1 no-dist-gzip dist-xz color-tests parallel-tests +AM_INIT_AUTOMAKE([1.11.2 no-dist-gzip dist-xz color-tests parallel-tests subdir-objects]) AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. |