Tie in ../external/lib after the "2nd" dependency barrier.

Move libpam to after a "3rd" dependency barrier, since PAM modules
may depend upon external/lib libraries such as libldap.
This commit is contained in:
lukem 2008-05-22 14:16:11 +00:00
parent 1a34d8be07
commit 8f975a405a
1 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.123 2008/05/01 15:33:33 jmmv Exp $
# $NetBSD: Makefile,v 1.124 2008/05/22 14:16:11 lukem Exp $
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
.include <bsd.own.mk>
@ -102,8 +102,17 @@ SUBDIR+= .WAIT libgssapi libhdb
SUBDIR+= .WAIT libkadm5srv libkadm5clnt libkafs libsl libss
.endif
.if (${MKLDAP} != "no")
# depends on libcrypto - only if ${MKCRYPTO}
SUBDIR+= ../external/bsd/openldap/lib
.endif
#==================== 3rd library dependency barrier ====================
SUBDIR+= .WAIT
.if (${MKPAM} != "no")
SUBDIR+= .WAIT libpam # depends on libkrb5, libkafs and more
SUBDIR+= libpam # depends on libkrb5, libkafs and more
.endif
.include <bsd.subdir.mk>