From 5168b32f862af2698803a0524ab76b501cc8278d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 25 Feb 2004 14:32:57 +0000 Subject: [PATCH] if ares is present, run aclocal in that dir before autoconf is run --- buildconf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/buildconf b/buildconf index c1f3e1d87..ee2721885 100755 --- a/buildconf +++ b/buildconf @@ -154,8 +154,10 @@ echo "buildconf: running autoconf" ${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed" if test -d ares; then - echo "buildconf: running autoconf in the ares directory" cd ares + echo "buildconf: running aclocal in the ares directory" + ${ACLOCAL:-aclocal} || die "The command '${ACLOCAL:-aclocal}' failed" + echo "buildconf: running autoconf in the ares directory" ${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed" cd .. fi