From 6c8236d7768f291847eac6cf384727864ca7b84a Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 18 May 2014 15:41:22 -0700 Subject: [PATCH] * configure.ac (INSTALL_INFO): Revert to just checking for "install-info". --- ChangeLog | 5 +++++ configure.ac | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 14cc70be705..ca8fb20145e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-05-18 Glenn Morris + + * configure.ac (INSTALL_INFO): + Revert to just checking for "install-info". + 2014-05-17 Glenn Morris * configure.ac (INSTALL_INFO): Try the identical-but-quieter-on-Debian diff --git a/configure.ac b/configure.ac index f1ed74e2374..a29c786d63b 100644 --- a/configure.ac +++ b/configure.ac @@ -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) -- 2.11.4.GIT