mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-04 19:40:34 -08:00
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:
parent
eaf37d9435
commit
c01ae0d629
2 changed files with 2 additions and 2 deletions
2
src/configure
vendored
2
src/configure
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue