1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 07:38:49 -05:00

if ares is present, run aclocal in that dir before autoconf is run

This commit is contained in:
Daniel Stenberg 2004-02-25 14:32:57 +00:00
parent 0373758359
commit 5168b32f86

View File

@ -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