From: Alan Modra Date: Sat, 15 Sep 2007 00:42:24 +0000 (+0000) Subject: configure.in: Correct makeinfo version check. X-Git-Tag: releases/gcc-4.2.2~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbb0ef40f6fa6b4ed31a7ee480d65978863fb0cc;p=thirdparty%2Fgcc.git configure.in: Correct makeinfo version check. * configure.in: Correct makeinfo version check. * configure: Regenerate. From-SVN: r128510 --- diff --git a/ChangeLog b/ChangeLog index 80d29915b0d0..6505023311af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-09-15 Alan Modra + + * configure.in: Correct makeinfo version check. + * configure: Regenerate. + 2007-07-19 Release Manager * GCC 4.2.1 released. diff --git a/configure b/configure index 1376afce122a..0b1d98ad54e8 100755 --- a/configure +++ b/configure @@ -3743,7 +3743,7 @@ case " $build_configdirs " in # For an installed makeinfo, we require it to be from texinfo 4.4 or # higher, else we use the "missing" dummy. if ${MAKEINFO} --version \ - | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then + | egrep 'texinfo[^0-9]*(4\.([4-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo" diff --git a/configure.in b/configure.in index 47636ad27f0e..ebd5d5ba2fb5 100644 --- a/configure.in +++ b/configure.in @@ -2246,7 +2246,7 @@ changequote(,) # For an installed makeinfo, we require it to be from texinfo 4.4 or # higher, else we use the "missing" dummy. if ${MAKEINFO} --version \ - | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then + | egrep 'texinfo[^0-9]*(4\.([4-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo"