summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorSascha Schumann <sascha@apache.org>2002-05-15 16:47:09 +0000
committerSascha Schumann <sascha@apache.org>2002-05-15 16:47:09 +0000
commit606719f819f2f0dbc09385137c3fc2769f432ceb (patch)
tree7db04d73447e78347011ee854087ebab0218b9d0 /buildconf
parenta6a360dde1cdbcec943225a89a4d85b7e1e96aec (diff)
downloadapr-606719f819f2f0dbc09385137c3fc2769f432ceb.tar.gz
Enable autoconf/autoheader to be redefined by users.
Submitted by: Joe Orton <joe@manyfish.co.uk> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63400 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildconf b/buildconf
index 506b02ac6..be13d7468 100755
--- a/buildconf
+++ b/buildconf
@@ -98,13 +98,13 @@ rm -f aclocal.m4
# Generate the autoconf header and ./configure
#
echo "Creating include/arch/unix/apr_private.h.in ..."
-autoheader
+${AUTOHEADER:-autoheader}
echo "Creating configure ..."
### do some work to toss config.cache?
-autoconf
+${AUTOCONF:-autoconf}
# Remove autoconf 2.5x's cache directory
-rm -rf autom4te.cache
+rm -rf autom4te*.cache
exit 0