aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-10-20 08:25:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-10-20 08:25:12 +0000
commitb84607ff7b89c79b769632a91b3620985280561d (patch)
tree486247eb1a443fe7fdfc7afbcfaf71501762795e /buildconf
parentac2af598804a0025fcadc294bc9d0a2709e3808f (diff)
run autoconf in the ares dir as well if the dir is present, after it has
been run "as usual"
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf8
1 files changed, 8 insertions, 0 deletions
diff --git a/buildconf b/buildconf
index 33597abcf..5c9e0faa0 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