summaryrefslogtreecommitdiff
path: root/buildconf
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
commit4ac08ca3ffcc7b9ec0f4eaf68d613a0782df3a7a (patch)
treef848d3072dd0f1ab5a7ebff6150fd27b4d3059ed /buildconf
parentc02df16ef54991d8580fa4b3e74d1e5c233210fa (diff)
downloadc-ares-4ac08ca3ffcc7b9ec0f4eaf68d613a0782df3a7a.tar.gz
c-ares-4ac08ca3ffcc7b9ec0f4eaf68d613a0782df3a7a.tar.bz2
c-ares-4ac08ca3ffcc7b9ec0f4eaf68d613a0782df3a7a.zip
Allow environment variables to override default autotools.
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildconf b/buildconf
index 3e61b9e..c1d0d03 100755
--- a/buildconf
+++ b/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