From: Paul Eggert Date: Thu, 25 Sep 2014 02:59:45 +0000 (-0700) Subject: * configure.ac (MAKEINFO): Allow 'makeinfo' to be called 'texi2any'. X-Git-Tag: emacs-25.0.90~2635^2~679^2~228 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2494447b719e8d50eee6fc04b83b44b957b67957;p=emacs.git * configure.ac (MAKEINFO): Allow 'makeinfo' to be called 'texi2any'. --- diff --git a/ChangeLog b/ChangeLog index adc0a509490..9aac8d0496b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-09-25 Paul Eggert + + * configure.ac (MAKEINFO): Allow 'makeinfo' to be called 'texi2any'. + 2014-09-23 Paul Eggert Merge from gnulib, incorporating: diff --git a/configure.ac b/configure.ac index 179a4a5faea..4d9cc0d0274 100644 --- a/configure.ac +++ b/configure.ac @@ -1103,10 +1103,10 @@ if test "$MAKEINFO" != "no"; then MAKEINFO=makeinfo fi case `($MAKEINFO --version) 2>/dev/null` in - 'makeinfo (GNU texinfo) '4.[[7-9]]* | \ - 'makeinfo (GNU texinfo) '4.[[1-9][0-9]]* | \ - 'makeinfo (GNU texinfo) '[[5-9]]* | \ - 'makeinfo (GNU texinfo) '[[1-9][0-9]]* ) ;; + *' (GNU texinfo) '4.[[7-9]]* | \ + *' (GNU texinfo) '4.[[1-9][0-9]]* | \ + *' (GNU texinfo) '[[5-9]]* | \ + *' (GNU texinfo) '[[1-9][0-9]]* ) ;; *) MAKEINFO=no;; esac fi