# HG changeset patch # User Andreas Schwab # Date 1274527561 -7200 # Node ID ce6895773462f9c5ae430cca1e8e67ef5bd9ba8b # Parent 4b1caf0bded62ef519a58eabfc191e00bd8b93c9 Regenerate configure diff -r 4b1caf0bded6 -r ce6895773462 configure --- a/configure Fri May 21 23:43:04 2010 +0300 +++ b/configure Sat May 22 13:26:01 2010 +0200 @@ -9561,7 +9561,10 @@ fi if test $ac_enable_autodepend = yes; then DEPFLAGS='-MMD -MF ${DEPDIR}/$*.d' - MKDEPDIR='test -d ${DEPDIR} || mkdir ${DEPDIR}' + ## In parallel builds, another make might create depdir between + ## the first test and mkdir, so stick another test on the end. + ## Or use mkinstalldirs? mkdir -p is not portable. + MKDEPDIR='test -d ${DEPDIR} || mkdir ${DEPDIR} || test -d ${DEPDIR}' deps_frag=autodeps.mk fi fi