diff options
author | Daniel Jacobowitz <drow@false.org> | 2007-10-12 14:03:20 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2007-10-12 14:03:20 +0000 |
commit | f2f6d97a07cf09c3bacf20ca884648e0131224a6 (patch) | |
tree | 2ab6a87318b36744eb79d291989fa5c7f435ed64 | |
parent | ee139059c702802b0174b61866b6b132917651a2 (diff) | |
download | newlib-github/binutils-2_18-branch.zip newlib-github/binutils-2_18-branch.tar.gz newlib-github/binutils-2_18-branch.tar.bz2 |
* configure.ac: Correct makeinfo version check.github/binutils-2_18-branchbinutils-2_18-branch
* configure: Regenerate.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-09-15 Alan Modra <amodra@bigpond.net.au> + + * configure.ac: Correct makeinfo version check. + * configure: Regenerate. + 2007-08-29 M R Swami Reddy <MR.Swami.Redd@nsc.com> * config.sub: Add support for cr16 target. @@ -6128,7 +6128,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.ac b/configure.ac index da88113..9dccef7 100644 --- a/configure.ac +++ b/configure.ac @@ -2403,7 +2403,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" |