summaryrefslogtreecommitdiff
path: root/mk/bsd.prefs.mk
diff options
context:
space:
mode:
authorjlam <jlam>2005-07-15 18:27:48 +0000
committerjlam <jlam>2005-07-15 18:27:48 +0000
commitd2eea181f0c5ef51db2ef63ecadc8d3add70bd6b (patch)
tree91f275af994eade5936cfd1677c803fdc48b0f89 /mk/bsd.prefs.mk
parent6b7892b7405d77307d3b0c21dd5229fd6fa9d116 (diff)
downloadpkgsrc-d2eea181f0c5ef51db2ef63ecadc8d3add70bd6b.tar.gz
Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by making
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
Diffstat (limited to 'mk/bsd.prefs.mk')
-rw-r--r--mk/bsd.prefs.mk9
1 files changed, 4 insertions, 5 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk
index c5392bee06b..87a392e43bb 100644
--- a/mk/bsd.prefs.mk
+++ b/mk/bsd.prefs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.prefs.mk,v 1.195 2005/06/14 07:25:24 jlam Exp $
+# $NetBSD: bsd.prefs.mk,v 1.196 2005/07/15 18:27:55 jlam Exp $
#
# Make file, included to get the site preferences, if any. Should
# only be included by package Makefiles before any .if defined()
@@ -267,16 +267,15 @@ _PKGSRC_TOPDIR= ${.CURDIR}/../..
. include "${_PKGSRC_TOPDIR}/mk/defaults/mk.conf"
.endif
-PKGSRC_USE_TOOLS?= # empty
-USE_TOOLS?= # empty
+USE_TOOLS?= # empty
# Provide default values for TOOLs used by the top-level make.
-PKGSRC_USE_TOOLS+= [ awk dirname echo grep pwd sed test true
+USE_TOOLS+= [ awk dirname echo grep pwd sed test true
# These tools are used by the top-level make only in certain packages and
# should eventually be moved into those particular package Makefiles.
#
-PKGSRC_USE_TOOLS+= date tr
+USE_TOOLS+= date tr
.include "${_PKGSRC_TOPDIR}/mk/tools/defaults.mk"