aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-08-12 23:08:27 -0400
committerMike Frysinger <vapier@gentoo.org>2012-11-17 14:15:58 -0500
commit49d9bad488401392f38f2a3de80f0e424bcccaec (patch)
treeb73304185fcdde13a5eb10e7f81df0cf7dd26e7a
parentfix generating autotools when no autoconf-archive is missing (diff)
downloadsandbox-49d9bad488401392f38f2a3de80f0e424bcccaec.tar.gz
sandbox-49d9bad488401392f38f2a3de80f0e424bcccaec.tar.bz2
sandbox-49d9bad488401392f38f2a3de80f0e424bcccaec.zip
require at least automake 1.11.6
We use AM_PROG_AR which was added after 1.11.1 at some point. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3529dcf..661b494 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ([2.61])
AC_INIT([sandbox], [2.7], [sandbox@gentoo.org])
-AM_INIT_AUTOMAKE([1.11 dist-xz no-dist-gzip silent-rules -Wall])
+AM_INIT_AUTOMAKE([1.11.6 dist-xz no-dist-gzip silent-rules -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])