From d24d33989870127522d511ac03e440c11562f403 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 24 Mar 2001 17:57:22 +0000 Subject: More configuration fixes. svn path=/trunk/; revision=3274 --- configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 0a2af8ec..d941e0e4 100644 --- a/configure.in +++ b/configure.in @@ -15,19 +15,19 @@ PACKAGE=`sed -n '/PACKAGE *= *\(.*\)/s//\1/p' <$srcdir/Makefile.in` VERSION=`sed -n '/VERSION *= *\(.*\)/s//\1/p' <$srcdir/Makefile.in` AM_INIT_AUTOMAKE("$PACKAGE", "$VERSION") -dnl Map autoconf, autoheader and aclocal to (/bin/true) if they are +dnl Map autoconf, autoheader and aclocal to missing.sh if they are dnl not available in the system, so as not to cause problems in dnl Makefile.in. Be sure to fix this hack if we start supporting dnl automake (Makefile.am). if test -z "$AUTOCONF" ; then - AUTOCONF=true + AUTOCONF="missing.sh autoconf" fi if test -z "$ACLOCAL" ; then - ACLOCAL=true + ACLOCAL="missing.sh aclocal" fi if test -z "$AUTOHEADER" ; then - AUTOHEADER=true + AUTOHEADER="missing.sh autoheader" fi AC_CANONICAL_HOST -- cgit v1.2.3