configure: add -p option to mkdir.

If build failed at first time (ie due to wrong configure options),
second build was failing when trying to recreate some directories.

Signed-off-by: Daniel Kochmanski <dkochmanski@hellsgate.pl>
This commit is contained in:
Daniel Kochmanski 2015-02-01 13:13:22 +01:00
parent eaf37d9435
commit c01ae0d629
2 changed files with 2 additions and 2 deletions

2
src/configure vendored
View file

@ -10814,4 +10814,4 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
for i in $srcdir/c/*/; do mkdir c/`basename $i`; done
for i in $srcdir/c/*/; do mkdir -p c/`basename $i`; done

View file

@ -902,4 +902,4 @@ AC_CONFIG_FILES([
])
AC_CONFIG_HEADERS([ecl/config.h:ecl/configpre.h]) # FIXME
AC_OUTPUT
for i in $srcdir/c/*/; do mkdir c/`basename $i`; done
for i in $srcdir/c/*/; do mkdir -p c/`basename $i`; done