summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2007-06-07 15:30:26 +0000
committerjlam <jlam@pkgsrc.org>2007-06-07 15:30:26 +0000
commitbf1aa1dd872acb17995b3ff3c1ab0cb7f2f74f3a (patch)
tree0ea65fb03e1868ccad14c4bde3c2f371d80bf7c1 /mk
parent968407733f103384d7a859e93af69a94846918f7 (diff)
downloadpkgsrc-bf1aa1dd872acb17995b3ff3c1ab0cb7f2f74f3a.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')
-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; \
;; \