28 lines
992 B
Diff
28 lines
992 B
Diff
From e2fa19ed1a1463cbea37bbdd27481aeb80d5d7a0 Mon Sep 17 00:00:00 2001
|
|
From: Martin Michlmayr <tbm@cyrius.com>
|
|
Date: Tue, 30 Jun 2015 12:40:49 -0400
|
|
Subject: [PATCH] Update configure.ac to reconize texi2any
|
|
|
|
makeinfo, which is nowadays provided by texi2any, reports texi2any as
|
|
of version 6.0.
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 10a5efe..13041bd 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -89,7 +89,7 @@ if test x"${MAKEINFO_FOUND}" = xyes
|
|
then
|
|
MAKEINFO_VERSION_REQ=5
|
|
AC_MSG_CHECKING([for makeinfo version >= $MAKEINFO_VERSION_REQ])
|
|
- MAKEINFO_VERSION=`makeinfo --version | sed -ne 's/^makeinfo .* \([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*$/\1/p'`
|
|
+ MAKEINFO_VERSION=`makeinfo --version | sed -ne 's/^\(makeinfo\|texi2any\) .* \([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*$/\2/p'`
|
|
if test x$MAKEINFO_VERSION = x -o 0$MAKEINFO_VERSION -lt $MAKEINFO_VERSION_REQ
|
|
then
|
|
AC_MSG_RESULT([no])
|
|
--
|
|
2.5.0
|
|
|