summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1999-03-22 06:51:09 +0000
committerAndreas Schwab <schwab@suse.de>1999-03-22 06:51:09 +0000
commit2f512715ce4e811789393378fc8101a38c1f665d (patch)
tree3ae97ea1e2db771da463c4deebe72dd6ab6707d1 /configure.in
parent19b54427b2d1e3962ef0b8303932c09f53a1dc20 (diff)
* configure.in: Also look in $PATH when searching for
install-info. Remove autoconf bug workaround and require autoconf 2.13. Mon Mar 22 15:48:06 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * configure.in: Also look in $PATH when searching for install-info. Remove autoconf bug workaround and require autoconf 2.13.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 40ed517fcf..7a639231a8 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_REVISION([$CVSid$])
-AC_PREREQ(2.11)dnl dnl Minimum Autoconf version required.
+AC_PREREQ(2.13)dnl dnl Minimum Autoconf version required.
AC_INIT(include/features.h)
AC_CONFIG_HEADER(config.h)
AC_CONFIG_AUX_DIR(scripts)
@@ -561,9 +561,8 @@ AC_SUBST(libc_cv_have_ksh)
AC_PROG_AWK
AC_PATH_PROG(PERL, perl, no)
AC_SUBST(PERL)
-dnl This works around a bug in autoconf.
-install_info_path=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
-AC_PATH_PROG(INSTALL_INFO, install-info, no, $install_info_path)
+AC_PATH_PROG(INSTALL_INFO, install-info, no,
+ $PATH:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin)
AC_SUBST(INSTALL_INFO)
if test "$INSTALL_INFO" != "no"; then
AC_CACHE_CHECK(for old Debian install-info, libc_cv_old_debian_install_info,