summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2005-04-13 00:32:33 +0000
committerDan Fandrich <dan@coneharvesters.com>2005-04-13 00:32:33 +0000
commit7c4feac6dbceacac8c279ffd19dd11468383de59 (patch)
treef3f4e0b95274394131403fec84beabfc946d83f6
parente01e364c3712aa299751f289876d42cbc14fdd41 (diff)
downloadgnurl-7c4feac6dbceacac8c279ffd19dd11468383de59.tar.gz
gnurl-7c4feac6dbceacac8c279ffd19dd11468383de59.tar.bz2
gnurl-7c4feac6dbceacac8c279ffd19dd11468383de59.zip
Allow environment variables to override default autotools.
-rwxr-xr-xares/buildconf10
1 files changed, 5 insertions, 5 deletions
diff --git a/ares/buildconf b/ares/buildconf
index 3e61b9ecf..c1d0d03f1 100755
--- a/ares/buildconf
+++ b/ares/buildconf
@@ -1,7 +1,7 @@
#!/bin/sh
-libtoolize --copy --automake --force
-aclocal
-autoheader
-autoconf
-automake --add-missing
+${LIBTOOLIZE:-libtoolize} --copy --automake --force
+${ACLOCAL:-aclocal}
+${AUTOHEADER:-autoheader}
+${AUTOCONF:-autoconf}
+${AUTOMAKE:-automake} --add-missing