1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-23 14:32:12 -07:00

* configure.ac (INSTALL_INFO): Revert to just checking for "install-info".

This commit is contained in:
Glenn Morris 2014-05-18 15:41:22 -07:00
parent c42ebc983b
commit 3b7865ca9b
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2014-05-18 Glenn Morris <rgm@gnu.org>
* configure.ac (INSTALL_INFO):
Revert to just checking for "install-info".
2014-05-17 Glenn Morris <rgm@gnu.org>
* configure.ac (INSTALL_INFO): Try the identical-but-quieter-on-Debian

View file

@ -969,7 +969,12 @@ dnl On some Debian versions, "install-info" prints irritating messages
dnl "This is not dpkg install-info anymore, but GNU install-info"
dnl if called via an absolute file name.
dnl Use the entirely-identical-but-quieter ginstall-info instead if present.
AC_PATH_PROGS(INSTALL_INFO, [ginstall-info install-info], :,
dnl Sadly some people may have an old ginstall-info installed on
dnl non-Debian systems, so we can't use this.
dnl AC_PATH_PROGS(INSTALL_INFO, [ginstall-info install-info], :,
dnl $PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin)
AC_PATH_PROG(INSTALL_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)