diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-05-25 22:32:40 +0000 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-05-25 22:32:40 +0000 |
commit | dd149d0f42de2e250dac1308be114e11307f9428 (patch) | |
tree | ced0940aa498d0f18950c3c5d752779fe4d4bb9d /buildconf | |
parent | cbd2377769bd8312221927d059d3d7e2712dc380 (diff) | |
download | httpd-dd149d0f42de2e250dac1308be114e11307f9428.tar.gz |
Add support for ${AUTOHEADER} and ${AUTOCONF} in buildconf
(apr and apr-util already support this convention.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95288 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -115,14 +115,14 @@ echo rebuilding $aprutil_configure } echo rebuilding $pcre_configure -(cd srclib/pcre && autoconf) +(cd srclib/pcre && ${AUTOCONF:-autoconf}) echo rebuilding $config_h_in rm -f $config_h_in -autoheader 2>&1 | grep -v "$cross_compile_warning" +${AUTOHEADER:-autoheader} 2>&1 | grep -v "$cross_compile_warning" echo rebuilding configure rm -f config.cache -autoconf 2>&1 | grep -v "$cross_compile_warning" +${AUTOCONF:-autoconf} 2>&1 | grep -v "$cross_compile_warning" exit 0 |