run autoconf in the ares dir as well if the dir is present, after it has
authorDaniel Stenberg <daniel@haxx.se>
Mon, 20 Oct 2003 08:25:12 +0000 (08:25 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 20 Oct 2003 08:25:12 +0000 (08:25 +0000)
been run "as usual"

buildconf

index 33597ab..5c9e0fa 100755 (executable)
--- 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