summaryrefslogtreecommitdiff
path: root/mk/flavor
diff options
context:
space:
mode:
authorjlam <jlam>2007-06-07 15:30:26 +0000
committerjlam <jlam>2007-06-07 15:30:26 +0000
commit361cd735684dcf28d67b12f7196f7c8c107fe403 (patch)
tree0ea65fb03e1868ccad14c4bde3c2f371d80bf7c1 /mk/flavor
parentded2c28b3f365744f33f399eac5f1ff0ba2bd166 (diff)
downloadpkgsrc-361cd735684dcf28d67b12f7196f7c8c107fe403.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.mk5
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; \
;; \