diff options
author | Joe Orton <jorton@apache.org> | 2009-03-24 15:28:10 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2009-03-24 15:28:10 +0100 |
commit | 28f9c96a066967923334249230a95d1bfd34bf30 (patch) | |
tree | c0af37b8a3a95bb40883971e0ff3732d5f4f2e9b | |
parent | * configure.in: If APR version is 2, APR-util does not exist. (diff) | |
download | apache2-28f9c96a066967923334249230a95d1bfd34bf30.tar.xz apache2-28f9c96a066967923334249230a95d1bfd34bf30.zip |
* build/config_vars.sh.in: Fix error if APU_CONFIG is not defined.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@757819 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build/config_vars.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/config_vars.sh.in b/build/config_vars.sh.in index 81bbd70969..7a60c0634e 100644 --- a/build/config_vars.sh.in +++ b/build/config_vars.sh.in @@ -37,7 +37,7 @@ fi 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@" |