When performing a parallel build (make -j N) with ./configure

Bruce Momjian <bruce@momjian.us>

Commit: a7dc90d9f680055c72d5ec7d1db4f6df7f8552e4
Author: Bruce Momjian <bruce@momjian.us>
Date: 2006-02-12T07:29:36Z
Releases: 8.2.0
When performing a parallel build (make -j N) with ./configure
--enable-depend it often tries to create the .deps directory twice and
bails out when it already exists due to a race condition of if doesn't
exist, then create.  This patch prevents mkdir from returning an error.

Kris Jurka

Files

PathChange+/−
src/Makefile.global.in modified +2 −2