diff options
author | obache <obache@pkgsrc.org> | 2014-02-14 06:39:32 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-02-14 06:39:32 +0000 |
commit | 882d60b1eb386c8bbd2214161bf73832ebdffaeb (patch) | |
tree | c6db44980439fe4f6b84830c0b8c873914047f69 /mk/depends/bsd.depends.mk | |
parent | f44b2c2127ad025bca9a0a68b18cf24ab1038982 (diff) | |
download | pkgsrc-882d60b1eb386c8bbd2214161bf73832ebdffaeb.tar.gz |
Prevent to force creating binary package in ${PACKAGES} for the case installing
dependency with USE_DESTDIR=yes unless creating binary packages.
Diffstat (limited to 'mk/depends/bsd.depends.mk')
-rw-r--r-- | mk/depends/bsd.depends.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/depends/bsd.depends.mk b/mk/depends/bsd.depends.mk index 7977ead843d..ed34201ffa2 100644 --- a/mk/depends/bsd.depends.mk +++ b/mk/depends/bsd.depends.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.depends.mk,v 1.24 2013/05/09 23:37:26 riastradh Exp $ +# $NetBSD: bsd.depends.mk,v 1.25 2014/02/14 06:39:32 obache Exp $ # # This Makefile fragment is included by bsd.pkg.mk and provides all # variables and targets related to dependencies. @@ -30,7 +30,7 @@ DEPENDS_TARGET= update . endif . elif make(bin-install) || make(su-bin-install) DEPENDS_TARGET= bin-install -. elif !empty(USE_DESTDIR:M[Yy][Ee][Ss]) || make(package) || make(package-install) +. elif make(package) || make(package-install) DEPENDS_TARGET= package-install . else DEPENDS_TARGET= reinstall |