aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-25 14:32:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-25 14:32:57 +0000
commit5168b32f862af2698803a0524ab76b501cc8278d (patch)
tree3d02b351738d30c7b431401fb117266c1724d168 /buildconf
parent03737583596c81eb0e54993cc68f34ff5a86800d (diff)
if ares is present, run aclocal in that dir before autoconf is run
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index c1f3e1d87..ee2721885 100755
--- 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