A large number of targets were doing a mkdir -p openssl. A parallel make
authorMatthew Dillon <dillon@dragonflybsd.org>
Sun, 21 Mar 2004 17:15:41 +0000 (17:15 +0000)
committerMatthew Dillon <dillon@dragonflybsd.org>
Sun, 21 Mar 2004 17:15:41 +0000 (17:15 +0000)
commit06bff654510f8eb33624086bd11c8ac5909e20f7
tree2a3615d2f08ee8fa5513d9662ed15b37e96cd8a3
parentd24ce1dc411e1b0ebdf77448b219047768b96a97
A large number of targets were doing a mkdir -p openssl.  A parallel make
may execute several of these simultaniously, causing mkdir -p to race against
itself.  mkdir -p is not atomic (it does a stat and then a later mkdir) and
can fail under these conditions, causing a buildworld -j N to fail, so move
it to its own dependancy.
secure/lib/libcrypto/Makefile.inc