aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-06-13 10:49:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-06-13 10:49:14 +0000
commit2c10c895da3834251f87c3154ff909c0fc24ca51 (patch)
tree9efc72e0b395cfe334d60ee3c34d1c35828cc02c /buildconf
parentc04fae3096309b66085ca4ab7edfe15dd0ff364f (diff)
downloadgnurl-2c10c895da3834251f87c3154ff909c0fc24ca51.tar.gz
gnurl-2c10c895da3834251f87c3154ff909c0fc24ca51.tar.bz2
gnurl-2c10c895da3834251f87c3154ff909c0fc24ca51.zip
run libtoolize in the ares dir as well, and modified the output slightly for
all tools run in the ares dir - now shown like "running ares/[tool]"
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf6
1 files changed, 4 insertions, 2 deletions
diff --git a/buildconf b/buildconf
index d7efd575f..f7b00bfa4 100755
--- a/buildconf
+++ b/buildconf
@@ -199,9 +199,11 @@ ${AUTOCONF:-autoconf} || die "The autoconf command failed"
if test -d ares; then
cd ares
- echo "buildconf: running aclocal in the ares directory"
+ echo "buildconf: running ares/libtoolize"
+${LIBTOOLIZE:-libtoolize} --copy --automake --force || die "The libtool command failed"
+ echo "buildconf: running ares/aclocal"
${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The ares aclocal command failed"
- echo "buildconf: running autoconf in the ares directory"
+ echo "buildconf: running ares/autoconf"
${AUTOCONF:-autoconf} || die "The ares autoconf command failed"
cd ..
fi