diff options
author | Ben Elliston <bje@au.ibm.com> | 2006-03-31 02:32:20 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2006-03-31 02:32:20 +0000 |
commit | a4ef73e9a203f3c12f1ccd670933fe2b782cbd9f (patch) | |
tree | 8024312104c6a59a8aeaea11056036babd928e1f | |
parent | b251c587e23947b14ffb24f573d7eaab41bb0430 (diff) | |
download | gdb-a4ef73e9a203f3c12f1ccd670933fe2b782cbd9f.zip gdb-a4ef73e9a203f3c12f1ccd670933fe2b782cbd9f.tar.gz gdb-a4ef73e9a203f3c12f1ccd670933fe2b782cbd9f.tar.bz2 |
PR binutils/1860
* configure.in: Require makeinfo 4.4 or higher.
* configure: Regenerate.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2006-03-31 Ben Elliston <bje@au.ibm.com> + + PR binutils/1860 + * configure.in: Require makeinfo 4.4 or higher. + * configure: Regenerate. + 2006-03-14 Paolo Bonzini <bonzini@gnu.org> * Makefile.in: Regenerate. @@ -3628,10 +3628,10 @@ case " $build_configdirs " in *" texinfo "*) MAKEINFO='$$r/$(BUILD_SUBDIR)/texinfo/makeinfo/makeinfo' ;; *) - # For an installed makeinfo, we require it to be from texinfo 4.2 or + # 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\.[2-9]|[5-9])' >/dev/null 2>&1; then + | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo" diff --git a/configure.in b/configure.in index da7c63f..def58c4 100644 --- a/configure.in +++ b/configure.in @@ -2203,10 +2203,10 @@ case " $build_configdirs " in *" texinfo "*) MAKEINFO='$$r/$(BUILD_SUBDIR)/texinfo/makeinfo/makeinfo' ;; *) changequote(,) - # For an installed makeinfo, we require it to be from texinfo 4.2 or + # 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\.[2-9]|[5-9])' >/dev/null 2>&1; then + | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo" |