Re: [PATCHES] parallel builds with dependencies

2006-02-11 Thread Bruce Momjian
Patch applied. Thanks. --- Kris Jurka wrote: 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

[PATCHES] parallel builds with dependencies

2006-02-10 Thread Kris Jurka
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