diff options
author | Glenn Morris <rgm@gnu.org> | 2007-08-24 17:09:30 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-08-24 17:09:30 +0000 |
commit | 9538e9ca9169c06238f1405842a1c26ab057bd67 (patch) | |
tree | 3f047b4caa0e5b6f76244e0014b808d9a2b3fe6f /configure.in | |
parent | 5b29d790c96ae6ebde6ed1a5a0ce97d71fb13ca5 (diff) | |
download | emacs-9538e9ca9169c06238f1405842a1c26ab057bd67.tar.gz |
(makeinfo): Reduce requirement to 4.6.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index fe23864c0a9..b4f8b07d7a6 100644 --- a/configure.in +++ b/configure.in @@ -1344,17 +1344,17 @@ dnl Don't use GZIP, which is used by gzip for additional parameters. AC_PATH_PROG(GZIP_PROG, gzip) -## Need makeinfo >= 4.8 (?) to build the manuals. +## Need makeinfo >= 4.6 (?) to build the manuals. AC_PATH_PROG(MAKEINFO, makeinfo, no) dnl By this stage, configure has already checked for egrep and set EGREP, dnl or exited with an error if no egrep was found. if test "$MAKEINFO" != "no" && \ - test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[5-9]]|4\.[[8-9]])'`" = x; then + test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[5-9]]|4\.[[6-9]])'`" = x; then MAKEINFO=no fi if test "$MAKEINFO" = "no"; then - AC_MSG_ERROR( [makeinfo >= 4.8 is required] ) + AC_MSG_ERROR( [makeinfo >= 4.6 is required] ) fi |