cvs commit: src/secure/lib/libcrypto Makefile.inc
Matthew Dillon
dillon at crater.dragonflybsd.org
Sun Mar 21 09:16:43 PST 2004
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
More information about the Commits
mailing list