diff options
author | jlam <jlam> | 2007-06-07 15:30:26 +0000 |
---|---|---|
committer | jlam <jlam> | 2007-06-07 15:30:26 +0000 |
commit | c5b89c710668ebe1e572933a4af20351714ed7f5 (patch) | |
tree | 0ea65fb03e1868ccad14c4bde3c2f371d80bf7c1 /mk/flavor | |
parent | 2abb96aa5a9830b67adf81eaae8dc6d6115b3493 (diff) | |
download | pkgsrc-c5b89c710668ebe1e572933a4af20351714ed7f5.tar.gz |
Back out previous and always define the shell variable $silent
appropriately again based on the value of _BOOTSTRAP_VERBOSE. This
code was lost in revision 1.27.
This should again suppress the output during "mirror-distfiles" in the
case where the bootstrap dependency is already installed.
Diffstat (limited to 'mk/flavor')
-rw-r--r-- | mk/flavor/pkg/depends.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/flavor/pkg/depends.mk b/mk/flavor/pkg/depends.mk index 0225ee44315..03b44017b17 100644 --- a/mk/flavor/pkg/depends.mk +++ b/mk/flavor/pkg/depends.mk @@ -1,4 +1,4 @@ -# $NetBSD: depends.mk,v 1.36 2007/06/05 13:19:10 rillig Exp $ +# $NetBSD: depends.mk,v 1.37 2007/06/07 15:30:26 jlam Exp $ # This command prints out the dependency patterns for all full (run-time) # dependencies of the package. @@ -97,7 +97,8 @@ _DEPENDS_INSTALL_CMD= \ exit 1; \ ;; \ esac; \ - if ${TEST} -z "$${silent-}"; then \ + silent=${_BOOTSTRAP_VERBOSE:Dyes}; \ + if ${TEST} -z "$${silent}"; then \ ${STEP_MSG} "Required installed package $$pattern: $$pkg found"; \ fi; \ ;; \ |