Move openssl to the front of SUBDIR list and add .WAIT after it since

both netpgp and openssh depend on it.  This should fix intermittent
failures of parallel builds (as seen e.g. on the autobuild cluster).
This commit is contained in:
uwe 2010-03-20 02:07:33 +00:00
parent b691db097d
commit 2ff643e1f6
2 changed files with 5 additions and 4 deletions

View File

@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.7 2009/07/19 23:43:46 christos Exp $
# $NetBSD: Makefile,v 1.8 2010/03/20 02:07:33 uwe Exp $
.include <bsd.own.mk>
.if (${MKCRYPTO} != "no")
SUBDIR+= netpgp openssh openssl
SUBDIR+= openssl .WAIT netpgp openssh
.endif
.include <bsd.subdir.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.5 2009/07/19 23:44:20 christos Exp $
# $NetBSD: Makefile,v 1.6 2010/03/20 02:07:33 uwe Exp $
#
# This Makefile exists to provide a single point to build
@ -9,9 +9,10 @@
.include <bsd.own.mk>
.if (${MKCRYPTO} != "no")
SUBDIR+= ../bsd/openssl/lib
SUBDIR+= .WAIT
SUBDIR+= ../bsd/netpgp/lib
SUBDIR+= ../bsd/openssh/lib
SUBDIR+= ../bsd/openssl/lib
.endif
.include <bsd.subdir.mk>