diff options
author | jlam <jlam@pkgsrc.org> | 2006-07-08 23:10:35 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-07-08 23:10:35 +0000 |
commit | c16221a4db5db247e9ecea04d817821955982042 (patch) | |
tree | 04459b5ed42b41d60b93766832b84b0beb86ba13 /mk/pam.buildlink3.mk | |
parent | c25fbde9c94a010e0b2c953766743f818b86c9ea (diff) | |
download | pkgsrc-c16221a4db5db247e9ecea04d817821955982042.tar.gz |
Change the format of BUILDLINK_ORDER to contain depth information as well,
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.
For example, "make show-buildlink3" in fonts/Xft2 displays:
zlib
fontconfig
iconv
zlib
freetype2
expat
freetype2
Xrender
renderproto
Diffstat (limited to 'mk/pam.buildlink3.mk')
-rw-r--r-- | mk/pam.buildlink3.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/pam.buildlink3.mk b/mk/pam.buildlink3.mk index c48f5e10822..85131bf407d 100644 --- a/mk/pam.buildlink3.mk +++ b/mk/pam.buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: pam.buildlink3.mk,v 1.6 2006/07/08 22:39:30 jlam Exp $ +# $NetBSD: pam.buildlink3.mk,v 1.7 2006/07/08 23:11:17 jlam Exp $ # # This Makefile fragment is meant to be included by packages that # require a PAM implementation. pam.buildlink3.mk will: @@ -86,5 +86,5 @@ PKG_FAIL_REASON= \ .elif ${PAM_TYPE} == "solaris-pam" BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nsolaris-pam} BUILDLINK_PACKAGES+= solaris-pam -BUILDLINK_ORDER+= solaris-pam +BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}solaris-pam .endif |