From 773e6321d8a9b05e5031a212dc5123dbd6832acb Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 5 May 2008 22:01:34 +0000 Subject: Boost the automake version required to 1.9. (Currently, configure.in also specifies the minimum autoconf and automake versions, but the check for the automake version doesn't produce an immediate failure - instead, you might get a flood of configure.in:16: option `tar-ustar' not recognized errors *after* configure.in:16: require version 1.9, but have 1.x.x and the diagnostic isn't as clear.) svn path=/trunk/; revision=25242 --- autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 90b5e94f1f..d86cca928f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -47,14 +47,14 @@ esac AMVER=`$AUTOMAKE --version | grep '^automake' | sed 's/.*) *//'` case "$AMVER" in -1.[6-9]* | 1.[1][0-9]*) +1.9* | 1.[1][0-9]*) ;; *) cat >&2 <<_EOF_ - You must have automake 1.6 or later installed to compile $PROJECT. + You must have automake 1.9 or later installed to compile $PROJECT. Download the appropriate package for your distribution/OS, or get the source tarball at ftp://ftp.gnu.org/pub/gnu/automake/ _EOF_ -- cgit v1.2.1