You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2009/03/24 15:28:12 UTC

svn commit: r757819 - /httpd/httpd/trunk/build/config_vars.sh.in

Author: jorton
Date: Tue Mar 24 14:28:10 2009
New Revision: 757819

URL: http://svn.apache.org/viewvc?rev=757819&view=rev
Log:
* build/config_vars.sh.in: Fix error if APU_CONFIG is not defined.

Modified:
    httpd/httpd/trunk/build/config_vars.sh.in

Modified: httpd/httpd/trunk/build/config_vars.sh.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/build/config_vars.sh.in?rev=757819&r1=757818&r2=757819&view=diff
==============================================================================
--- httpd/httpd/trunk/build/config_vars.sh.in (original)
+++ httpd/httpd/trunk/build/config_vars.sh.in Tue Mar 24 14:28:10 2009
@@ -37,7 +37,7 @@
 
 APR_LIBTOOL="`${APR_CONFIG} --apr-libtool`"
 APR_INCLUDEDIR="`${APR_CONFIG} --includedir`"
-APU_INCLUDEDIR="`${APU_CONFIG} --includedir`"
+test -n "@APU_CONFIG@" && APU_INCLUDEDIR="`${APU_CONFIG} --includedir`"
 
 installbuilddir="@exp_installbuilddir@"