aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-05-05 22:01:34 +0000
committerGuy Harris <guy@alum.mit.edu>2008-05-05 22:01:34 +0000
commit773e6321d8a9b05e5031a212dc5123dbd6832acb (patch)
tree6f4fb90e0f59af6f3358dd359bdff593db9137f0 /autogen.sh
parentf7c4c239458647e031d7fdca57f6d397329ad112 (diff)
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
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
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_