summaryrefslogtreecommitdiff
path: root/build/config_vars.sh.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2009-03-24 14:28:10 +0000
committerJoe Orton <jorton@apache.org>2009-03-24 14:28:10 +0000
commit28f9c96a066967923334249230a95d1bfd34bf30 (patch)
treec0af37b8a3a95bb40883971e0ff3732d5f4f2e9b /build/config_vars.sh.in
parent77935710a9eef0f9e140559dc9f7747f92eeb4fa (diff)
downloadhttpd-28f9c96a066967923334249230a95d1bfd34bf30.tar.gz
* 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
Diffstat (limited to 'build/config_vars.sh.in')
-rw-r--r--build/config_vars.sh.in2
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@"