DragonFly commits List (threaded) for 2004-03
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]
cvs commit: src/secure/lib/libcrypto Makefile.inc
dillon 2004/03/21 09:15:41 PST
DragonFly src repository
Modified files:
secure/lib/libcrypto Makefile.inc
Log:
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.
Revision Changes Path
1.3 +13 -10 src/secure/lib/libcrypto/Makefile.inc
http://www.dragonflybsd.org/cvsweb/src/secure/lib/libcrypto/Makefile.inc.diff?r1=1.2&r2=1.3&f=h
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]