diff options
author | joerg <joerg@pkgsrc.org> | 2007-05-22 19:04:24 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-05-22 19:04:24 +0000 |
commit | 5e13adf1630ee5f3070875792c22137ec6334f0a (patch) | |
tree | d84383e972ffecd86649a5ba0df97cb5c9211282 /mk | |
parent | 9a6f04678ede0963aad8f47d6bd955af08d2a202 (diff) | |
download | pkgsrc-5e13adf1630ee5f3070875792c22137ec6334f0a.tar.gz |
While investigating xtraeme's bug report about duplicate running of the
dependency installation, it occured to me that "make depends" doesn't
run the bootstrap-depends target correctly anymore. A deeper analysis
didn't show why it happened to work as it is only requested explicitly
by fetch. It wasn't an issue as all bootstrap dependencies were checked
again before, but fix this correctly by listening as dependency of
depends as well.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/depends/depends.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/depends/depends.mk b/mk/depends/depends.mk index f16780ae26c..1c69e9729ef 100644 --- a/mk/depends/depends.mk +++ b/mk/depends/depends.mk @@ -1,4 +1,4 @@ -# $NetBSD: depends.mk,v 1.13 2007/05/22 16:17:16 joerg Exp $ +# $NetBSD: depends.mk,v 1.14 2007/05/22 19:04:24 joerg Exp $ ###################################################################### ### depends (PUBLIC) @@ -37,6 +37,7 @@ ${_COOKIE.depends}: real-depends ### real-depends is a helper target onto which one can hook all of the ### targets that do the actual dependency installation. ### +_REAL_DEPENDS_TARGETS+= bootstrap-depends _REAL_DEPENDS_TARGETS+= depends-message _REAL_DEPENDS_TARGETS+= pre-depends-hook _REAL_DEPENDS_TARGETS+= _flavor-install-dependencies |