Previously, configure would try to write config_vars.mk into build
without ensuring that that directory existed first.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94188
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.34-dev
+ *) Ensure that the build/ directory is created when using VPATH.
+ [Justin Erenkrantz]
+
*) Add some popular types to the mime magic file. PR 7730.
[Linus Walleij <triad@df.lth.se>, Justin Erenkrantz]
APACHE_MKDIR_P_CHECK
echo creating config_vars.mk
+ if test "$ac_cv_mkdir_p" = "yes"; then
+ mkdir_p="mkdir -p"
+ else
+ mkdir_p="$top_srcdir/build/mkdir.sh"
+ fi
+ test -d build || $mkdir_p build
> build/config_vars.mk
for i in $APACHE_VAR_SUBST; do
eval echo "$i = \$$i" >> build/config_vars.mk