From: Daniel Stenberg Date: Mon, 20 Oct 2003 08:25:12 +0000 (+0000) Subject: run autoconf in the ares dir as well if the dir is present, after it has X-Git-Tag: curl-7_10_8~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b84607ff7b89c79b769632a91b3620985280561d;p=thirdparty%2Fcurl.git run autoconf in the ares dir as well if the dir is present, after it has been run "as usual" --- diff --git a/buildconf b/buildconf index 33597abcfb..5c9e0faa0d 100755 --- a/buildconf +++ b/buildconf @@ -133,6 +133,14 @@ echo "buildconf: running autoheader" ${AUTOHEADER:-autoheader} || die "The command '${AUTOHEADER:-autoheader}' failed" 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 + ${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed" + cd .. +fi + echo "buildconf: running automake" ${AUTOMAKE:-automake} -a || die "The command '${AUTOMAKE:-automake} -a' failed" exit 0