diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-25 14:32:57 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-25 14:32:57 +0000 |
commit | 5168b32f862af2698803a0524ab76b501cc8278d (patch) | |
tree | 3d02b351738d30c7b431401fb117266c1724d168 /buildconf | |
parent | 03737583596c81eb0e54993cc68f34ff5a86800d (diff) | |
download | curl-5168b32f862af2698803a0524ab76b501cc8278d.tar.gz |
if ares is present, run aclocal in that dir before autoconf is run
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |