diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2010-05-22 13:26:01 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2010-05-22 13:26:01 +0200 |
commit | a9641610c57dadb0c52518f15897910434936d4f (patch) | |
tree | 5bbe325687fddfce4a227624e02d801a2e8990f0 /configure | |
parent | df9db1517ed4957c143edd0d6216214f463dd0c0 (diff) | |
download | emacs-a9641610c57dadb0c52518f15897910434936d4f.tar.gz |
Regenerate configure
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure index 1050b17e873..9e3c0fff5fd 100755 --- a/configure +++ b/configure @@ -9561,7 +9561,10 @@ $as_echo "$ac_enable_autodepend" >&6; } 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 |