* configure.ac (INSTALL_INFO): Try "ginstall-info" before "install-info".

Ref: http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00232.html
This commit is contained in:
Glenn Morris 2014-05-16 21:38:33 -04:00
parent 1bafb1dede
commit d137278ad4
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2014-05-17 Glenn Morris <rgm@gnu.org>
* configure.ac (INSTALL_INFO): Try the identical-but-quieter-on-Debian
"ginstall-info" before "install-info".
2014-05-04 Paul Eggert <eggert@cs.ucla.edu>
Revert recent libpng changes (Bug#17339).

View file

@ -965,7 +965,7 @@ if test "$opsys" = "mingw32"; then
LN_S="/bin/ln"
fi
AC_PATH_PROG(INSTALL_INFO, install-info, :,
AC_PATH_PROGS(INSTALL_INFO, [ginstall-info install-info], :,
$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin)
dnl Don't use GZIP, which is used by gzip for additional parameters.
AC_PATH_PROG(GZIP_PROG, gzip)