summaryrefslogtreecommitdiff
path: root/mk/tools.mk
diff options
context:
space:
mode:
authorjlam <jlam>2004-02-18 13:32:38 +0000
committerjlam <jlam>2004-02-18 13:32:38 +0000
commit920811ba4244705fdca01b1f2e99c9104cf6ec5f (patch)
tree4a6b9245550fffa4e5469f8b4f800859f0b85289 /mk/tools.mk
parent31337aba14dfc5b78db1d67408752dc6b4a71420 (diff)
downloadpkgsrc-920811ba4244705fdca01b1f2e99c9104cf6ec5f.tar.gz
* Move pkgsrc/mk/compiler/bsd.compiler.mk to pkgsrc/mk/compiler.mk.
Package Makefiles may now directly include compiler.mk. * Don't include compiler.mk within bsd.prefs.mk any longer. It was only included for the purposes of defining CC_VERSION. Packages that want to test the value of CC_VERSION should now first include "../../mk/compiler.mk". Any GCC_REQD statements in package Makefiles should be set before compiler.mk is included. * Simpllfy pkgsrc/mk/compiler/*.mk files as a result of not needing to be included indirectly by bsd.prefs.mk. We remove the special handling associated with detecting whether the file was included from within bsd.prefs.mk. These files are now much more straightforward to write and understand. * G/C the BSD_PREFS_MK stack mechanism as the only users (compiler/*) no longer need it. * Ensure that directories are prepended to the PATH only from within bsd.pkg.mk.
Diffstat (limited to 'mk/tools.mk')
-rw-r--r--mk/tools.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/tools.mk b/mk/tools.mk
index d74cb485420..b6e45012a80 100644
--- a/mk/tools.mk
+++ b/mk/tools.mk
@@ -1,4 +1,4 @@
-# $NetBSD: tools.mk,v 1.27 2004/02/17 12:09:16 jlam Exp $
+# $NetBSD: tools.mk,v 1.28 2004/02/18 13:32:38 jlam Exp $
#
# This Makefile creates a ${TOOLS_DIR} directory and populates the bin
# subdir with tools that hide the ones outside of ${TOOLS_DIR}.
@@ -14,7 +14,7 @@ TOOLS_MK= # defined
TOOLS_DIR= ${WRKDIR}/.tools
.if empty(PREPEND_PATH:M${TOOLS_DIR}/bin)
PREPEND_PATH+= ${TOOLS_DIR}/bin
-PATH:= ${TOOLS_DIR}/bin:${PATH}
+#PATH:= ${TOOLS_DIR}/bin:${PATH}
.endif
TOOLS_SHELL?= ${SH}