if ares is present, run aclocal in that dir before autoconf is run
authorDaniel Stenberg <daniel@haxx.se>
Wed, 25 Feb 2004 14:32:57 +0000 (14:32 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 25 Feb 2004 14:32:57 +0000 (14:32 +0000)
buildconf

index c1f3e1d..ee27218 100755 (executable)
--- 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