aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2007-09-15 19:45:45 +0000
committerGlenn Morris <[email protected]>2007-09-15 19:45:45 +0000
commitd4840f44f76157dac920967177aca0791f95a10c (patch)
tree55d98534e93d8b496d9b2668a3685629c4a2fbeb /configure.in
parent02ff9df4735463487b5ab674b4586d332107a5e0 (diff)
Fix makeinfo version regexp.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 306f844197..3686753e8c 100644
--- a/configure.in
+++ b/configure.in
@@ -1347,7 +1347,7 @@ 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\.[[6-9]])'`" = x; then
+ test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[1-4]][[0-9]]+|[[5-9]]|4\.[[6-9]]|4\.[[1-5]][[0-9]]+)'`" = x; then
MAKEINFO=no
fi