You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2005/05/20 02:54:32 UTC

svn commit: r171028 - /httpd/apreq/trunk/buildconf

Author: joes
Date: Thu May 19 17:54:32 2005
New Revision: 171028

URL: http://svn.apache.org/viewcvs?rev=171028&view=rev
Log:
Let evironment variables override any buildconf defaults.

Modified:
    httpd/apreq/trunk/buildconf

Modified: httpd/apreq/trunk/buildconf
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/buildconf?rev=171028&r1=171027&r2=171028&view=diff
==============================================================================
--- httpd/apreq/trunk/buildconf (original)
+++ httpd/apreq/trunk/buildconf Thu May 19 17:54:32 2005
@@ -18,12 +18,12 @@
 # buildconf: Build the support scripts needed to compile from a
 #            checked-out version of the source code.
 
-perl="perl"
-libtool="libtool"
-aclocal="aclocal"
-automake="automake"
-autoconf="autoconf"
-autoheader="autoheader"
+perl="${PERL:-perl}"
+libtool="${LIBTOOL:-libtool}"
+aclocal="${ACLOCAL:-aclocal}"
+automake="${AUTOMAKE:-automake}"
+autoconf="${AUTOCONF:-autoconf}"
+autoheader="${AUTOHEADER:-autoheader}"
 
 
 while test $# -gt 0