diff options
author | jperkin <jperkin@pkgsrc.org> | 2015-11-25 12:51:16 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2015-11-25 12:51:16 +0000 |
commit | dd4daa110ef0b5850e1a974fe64e000db65c3e6a (patch) | |
tree | e339f459af067df609a92f5f7abb15e63c95cd6e /lang/tcl | |
parent | ce0a8db11cb3371e3f19784cfdf2fba5015c7e60 (diff) | |
download | pkgsrc-dd4daa110ef0b5850e1a974fe64e000db65c3e6a.tar.gz |
Remove mk/find-prefix.mk usage from the lang category.
The find-prefix infrastructure was required in a pkgviews world where
packages installed from pkgsrc could have different installation
prefixes, and this was a way for a dependency prefix to be determined.
Now that pkgviews has been removed there is no longer any need for the
overhead of this infrastructure. Instead we use BUILDLINK_PREFIX.pkg
for dependencies pulled in via buildlink, or LOCALBASE/PREFIX where the
dependency is coming from pkgsrc.
Provides a reasonable performance win due to the reduction of `pkg_info
-qp` calls, some of which were redundant anyway as they were duplicating
the same information provided by BUILDLINK_PREFIX.pkg.
Diffstat (limited to 'lang/tcl')
-rw-r--r-- | lang/tcl/buildlink3.mk | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lang/tcl/buildlink3.mk b/lang/tcl/buildlink3.mk index c920ae5263a..7060922a0a2 100644 --- a/lang/tcl/buildlink3.mk +++ b/lang/tcl/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.26 2014/02/26 11:24:28 dsainty Exp $ +# $NetBSD: buildlink3.mk,v 1.27 2015/11/25 12:51:17 jperkin Exp $ BUILDLINK_TREE+= tcl @@ -17,13 +17,10 @@ BUILDLINK_FILES.tcl+= bin/tclsh* BUILDLINK_TRANSFORM+= l:tcl:tcl86 BUILDLINK_TRANSFORM+= l:tcl8.6:tcl86 -TCLCONFIG_SH?= ${BUILDLINK_PREFIX.tcl}/lib/tclConfig.sh - _TOOLS_USE_PKGSRC.tclsh= yes -FIND_PREFIX:= TOOLS_PREFIX.tclsh=tcl -.include "../../mk/find-prefix.mk" -TCLSH= ${TOOLS_PREFIX.tclsh}/bin/tclsh +TCLCONFIG_SH?= ${BUILDLINK_PREFIX.tcl}/lib/tclConfig.sh +TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh .include "../../devel/zlib/buildlink3.mk" .include "../../mk/dlopen.buildlink3.mk" |