diff options
author | rillig <rillig> | 2005-12-31 15:20:59 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-31 15:20:59 +0000 |
commit | a46a8ceec1c6e338ea5e1ab1ed732f031a67171a (patch) | |
tree | f31aa8d2f2e346a4f07ecc68cb6cbaaa4e8225d5 /mk/bsd.pkg.mk | |
parent | 37083f14485c8577eb22a0117a24613a6351f120 (diff) | |
download | pkgsrc-a46a8ceec1c6e338ea5e1ab1ed732f031a67171a.tar.gz |
Don't check for PKG_FAIL_REASON when doing show-depends-dirs. This prevents
packages that set PKG_FAIL_REASON from being excluded from the bulk build
databases like .index and .dependstree.
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index e61d8b1a3cc..75cca01b3f6 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1778 2005/12/31 08:18:34 wiz Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1779 2005/12/31 15:20:59 rillig Exp $ # # This file is in the public domain. # @@ -1391,7 +1391,7 @@ do-fetch: .PHONY: show-depends-dirs .if !target(show-depends-dirs) _ALL_DEPENDS= ${DEPENDS} ${BUILD_DEPENDS} -show-depends-dirs: do-check-pkg-fail-reason +show-depends-dirs: @set -e; \ dlist=""; \ depends=${_ALL_DEPENDS:C/^[^:]*://:O:u:Q}; \ |