diff options
author | jlam <jlam@pkgsrc.org> | 2006-07-19 16:01:40 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-07-19 16:01:40 +0000 |
commit | c88a32be7d0b64ef4e2d2508a36cd1e8b486f30b (patch) | |
tree | 28a3917150eb70d36ea453af60a3f0ffa4e04d04 /mk/fetch | |
parent | 79d62b7bc13ae35246abd7aad981caff114c48dd (diff) | |
download | pkgsrc-c88a32be7d0b64ef4e2d2508a36cd1e8b486f30b.tar.gz |
Make "mirror-distfiles" less verbose by not printing out anything if no
bootstrap dependencies need to be built and installed.
Diffstat (limited to 'mk/fetch')
-rw-r--r-- | mk/fetch/bsd.fetch-vars.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mk/fetch/bsd.fetch-vars.mk b/mk/fetch/bsd.fetch-vars.mk index c9d59f56d37..e66ab5c0dfa 100644 --- a/mk/fetch/bsd.fetch-vars.mk +++ b/mk/fetch/bsd.fetch-vars.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.fetch-vars.mk,v 1.4 2006/07/18 22:41:06 jlam Exp $ +# $NetBSD: bsd.fetch-vars.mk,v 1.5 2006/07/19 16:01:40 jlam Exp $ # # This Makefile fragment is included separately by bsd.pkg.mk and # defines some variables which must be defined earlier than where @@ -29,8 +29,10 @@ DISTFILES?= ${DISTNAME}${EXTRACT_SUFX} USE_TOOLS+= ${FAILOVER_FETCH:Ddigest\:bootstrap} # When mirroring distfiles which others may fetch, only fetch the -# distfiles if it is allowed to be re-distributed freely. +# distfiles if it is allowed to be re-distributed freely. Also, +# suppress some bootstrap-depends output. # .if make(mirror-distfiles) -NO_SKIP= # defined +NO_SKIP= # defined +_BOOTSTRAP_VERBOSE= # defined .endif |