From: Bruce Mitchener Date: Thu, 16 Feb 2012 03:47:39 +0000 (+0700) Subject: Check for automake / aclocal 1.11 as well. X-Git-Tag: gc7_3alpha2~115^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=502d837370d4a296e53ca7cf86cdf69fa544dcc6;p=gc Check for automake / aclocal 1.11 as well. --- diff --git a/autogen.sh b/autogen.sh index ffba18c1..a50d0429 100755 --- a/autogen.sh +++ b/autogen.sh @@ -5,7 +5,7 @@ set -e # These version are ok, pre-1.7 is not. Post 1.7 may produce a lot of # warnings for unrelated projects, so prefer 1.7 for now. am_version= -for v in 1.10 1.9 1.8 1.7; do +for v in 1.11 1.10 1.9 1.8 1.7; do if type -p &>/dev/null automake-$v; then am_version="-$v" break