aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-21 15:45:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-21 15:45:58 +0000
commit67fca4cb010caa7661be6a012f82d5be525f56c8 (patch)
treea3b924b6771e5a4be0fd96de2435b313c684634e /buildconf
parent606715b2cda54fa3d42fcc6e211e03b200188943 (diff)
recognize and use ACLOCAL_FLAGS if set (Thomas Schwinge patch)
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildconf b/buildconf
index 29abf2704..9c74b97fb 100755
--- a/buildconf
+++ b/buildconf
@@ -159,7 +159,7 @@ fi
echo "buildconf: running libtoolize"
${LIBTOOLIZE:-libtoolize} --copy --automake --force || die "The command '${LIBTOOLIZE:-libtoolize} --copy --automake --force' failed"
echo "buildconf: running aclocal"
-${ACLOCAL:-aclocal} || die "The command '${AUTOHEADER:-aclocal}' failed"
+${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The command '${ACLOCAL:-aclocal}${ACLOCAL_FLAGS:+" $ACLOCAL_FLAGS"}' failed"
echo "buildconf: running aclocal hack to convert all mv to mv -f"
perl -i.bak -pe 's/\bmv +([^-\s])/mv -f $1/g' aclocal.m4
echo "buildconf: running autoheader"
@@ -170,7 +170,7 @@ ${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
if test -d ares; then
cd ares
echo "buildconf: running aclocal in the ares directory"
- ${ACLOCAL:-aclocal} || die "The command '${ACLOCAL:-aclocal}' failed"
+ ${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The command '${ACLOCAL:-aclocal}${ACLOCAL_FLAGS:+" $ACLOCAL_FLAGS"}' failed"
echo "buildconf: running autoconf in the ares directory"
${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
cd ..