]> code.delx.au - gnu-emacs/commitdiff
* configure.ac (INSTALL_INFO): Revert to just checking for "install-info".
authorGlenn Morris <rgm@gnu.org>
Sun, 18 May 2014 22:41:22 +0000 (15:41 -0700)
committerGlenn Morris <rgm@gnu.org>
Sun, 18 May 2014 22:41:22 +0000 (15:41 -0700)
ChangeLog
configure.ac

index bb04bab61363d8928ca5235d343a02020f966f46..484c696cfcbd51bc9c5e3df50e8dffd409ec61a8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index f1ed74e2374d97febb656085ffe14c586c9af14c..a29c786d63b99586723ad0038facc5efc2692d64 100644 (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)