aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-01-06 22:08:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-01-06 22:08:39 +0000
commit723a78ae3ffd67d9751198b8b383a70f7b611908 (patch)
treee9d536b27e33fba3308a239ad25f0e18bf11c937 /buildconf
parentcd9d0d7deccbd231c4a31c4d99375e10f05e065b (diff)
As Alexander Lazic pointed out, run the buildconf from the ares dir if that
is present instead of trying to duplicate that stuff in this script.
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf8
1 files changed, 2 insertions, 6 deletions
diff --git a/buildconf b/buildconf
index 6b090bf62..ec818bcd1 100755
--- a/buildconf
+++ b/buildconf
@@ -226,12 +226,8 @@ ${AUTOCONF:-autoconf} || die "The autoconf command failed"
if test -d ares; then
cd ares
- echo "buildconf: running ares/libtoolize"
-$libtoolize --copy --automake --force || die "The libtoolize command failed"
- echo "buildconf: running ares/aclocal"
- ${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The ares aclocal command failed"
- echo "buildconf: running ares/autoconf"
- ${AUTOCONF:-autoconf} || die "The ares autoconf command failed"
+ echo "buildconf: running in ares"
+ ./buildconf
cd ..
fi