From: Daniel Stenberg Date: Wed, 25 Feb 2004 14:32:57 +0000 (+0000) Subject: if ares is present, run aclocal in that dir before autoconf is run X-Git-Tag: curl-7_11_1~221 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5168b32f862af2698803a0524ab76b501cc8278d;p=thirdparty%2Fcurl.git if ares is present, run aclocal in that dir before autoconf is run --- diff --git a/buildconf b/buildconf index c1f3e1d876..ee27218854 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