summaryrefslogtreecommitdiff
path: root/mk/install/bsd.install.mk
diff options
context:
space:
mode:
authoragc <agc>2014-12-06 23:28:18 +0000
committeragc <agc>2014-12-06 23:28:18 +0000
commit2749d2b55d582dd1ce1d60c0c53744c90c132800 (patch)
treee86ab408005cca44835c5061c73c1f0abc353165 /mk/install/bsd.install.mk
parentc6ae3ba3845293b63ba9cefe451dae14da62154d (diff)
downloadpkgsrc-2749d2b55d582dd1ce1d60c0c53744c90c132800.tar.gz
Add a new definition, PKGSRC_KEEP_BIN_PKGS, which defaults to "no".
This definition controls whether the binary package which is built during package installation will be copied to pkgsrc/packages/All. To retain binary packages in pkgsrc/packages/All, set PKGSRC_KEEP_BIN_PKGS=yes in environment or MAKECONF. If this is not set, binary packages will not be preserved after their WRKDIR is removed. This may not be what you want. To preserve the status quo since 2013/05/22, and just delete the binary package after it's built, the default for PKGSRC_KEEP_BIN_PKGS is "no", or it can be explicitly set. As reviewed on tech-pkg.
Diffstat (limited to 'mk/install/bsd.install.mk')
-rw-r--r--mk/install/bsd.install.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/mk/install/bsd.install.mk b/mk/install/bsd.install.mk
index 014f2f65e25..21a7790e37b 100644
--- a/mk/install/bsd.install.mk
+++ b/mk/install/bsd.install.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.install.mk,v 1.14 2013/05/23 13:18:56 obache Exp $
+# $NetBSD: bsd.install.mk,v 1.15 2014/12/06 23:28:18 agc Exp $
#
# This Makefile fragment is included by bsd.pkg.mk and provides all
# variables and targets related to installing packages.
@@ -24,8 +24,10 @@ _COOKIE.install= ${WRKDIR}/.install_done
.PHONY: install
.if ${_USE_DESTDIR} == "no"
install: stage-install
-.else
+.elif ${_KEEP_BIN_PKGS} == "no"
install: stage-package-install
+.else
+install: package-install
.endif
######################################################################