summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam>2005-05-10 19:34:02 +0000
committerjlam <jlam>2005-05-10 19:34:02 +0000
commit6caf33fae621e8ee1ea25ea0b23b3d78481b1a23 (patch)
treefebd4effdbd20c03941d138f027d2bfdcff93313 /mk
parent9d1fe5cd30cc4ca5408d6ef67de4b4dc914b0705 (diff)
downloadpkgsrc-6caf33fae621e8ee1ea25ea0b23b3d78481b1a23.tar.gz
TOOLS_CREATE has replaced TOOLS_{SYMLINK,WRAP}.
Diffstat (limited to 'mk')
-rw-r--r--mk/tools/autoconf.mk4
-rw-r--r--mk/tools/automake.mk4
-rw-r--r--mk/tools/make.mk4
-rw-r--r--mk/tools/perl.mk4
4 files changed, 8 insertions, 8 deletions
diff --git a/mk/tools/autoconf.mk b/mk/tools/autoconf.mk
index 6b31608466d..f066e926efe 100644
--- a/mk/tools/autoconf.mk
+++ b/mk/tools/autoconf.mk
@@ -1,4 +1,4 @@
-# $NetBSD: autoconf.mk,v 1.4 2005/04/28 03:01:11 jlam Exp $
+# $NetBSD: autoconf.mk,v 1.5 2005/05/10 19:34:02 jlam Exp $
#
# This Makefile fragment handles packages that use GNU autoconf.
#
@@ -140,7 +140,7 @@ pre-configure: tools-libtool-m4-override
#
AUTOMAKE_OVERRIDE?= yes
.if !empty(AUTOMAKE_OVERRIDE:M[yY][eE][sS])
-TOOLS_SYMLINK+= ${_TOOLS_AUTOCONF_LINKS}
+TOOLS_CREATE+= ${_TOOLS_AUTOCONF_LINKS}
. for _t_ in ${_TOOLS_AUTOCONF_LINKS}
. for _s_ in ${_TOOLS_AUTOCONF.${_t_}}
. if empty(TOOLS_REAL_CMD.${_t_}:M*/${_s_})
diff --git a/mk/tools/automake.mk b/mk/tools/automake.mk
index 50344f1d53e..c6f918ab384 100644
--- a/mk/tools/automake.mk
+++ b/mk/tools/automake.mk
@@ -1,4 +1,4 @@
-# $NetBSD: automake.mk,v 1.4 2005/04/28 03:01:11 jlam Exp $
+# $NetBSD: automake.mk,v 1.5 2005/05/10 19:34:02 jlam Exp $
#
# This Makefile fragment handles packages that use GNU automake.
#
@@ -124,7 +124,7 @@ AUTOMAKE= ${TOOLS_CMD.automake}
#
AUTOMAKE_OVERRIDE?= yes
.if !empty(AUTOMAKE_OVERRIDE:M[yY][eE][sS])
-TOOLS_SYMLINK+= ${_TOOLS_AUTOMAKE_LINKS}
+TOOLS_CREATE+= ${_TOOLS_AUTOMAKE_LINKS}
. for _t_ in ${_TOOLS_AUTOMAKE_LINKS}
. for _s_ in ${_TOOLS_AUTOMAKE.${_t_}}
. if empty(TOOLS_REAL_CMD.${_t_}:M*/${_s_})
diff --git a/mk/tools/make.mk b/mk/tools/make.mk
index 83f07152366..7ea7bab6b26 100644
--- a/mk/tools/make.mk
+++ b/mk/tools/make.mk
@@ -1,4 +1,4 @@
-# $NetBSD: make.mk,v 1.6 2005/05/04 06:44:45 jlam Exp $
+# $NetBSD: make.mk,v 1.7 2005/05/10 19:34:02 jlam Exp $
#
# This Makefile fragment creates a tool called "make" under ${TOOLS_DIR}
# that corresponds to the make program used to build the package.
@@ -19,7 +19,7 @@ MAKE_PROGRAM= ${_IMAKE_MAKE}
MAKE_PROGRAM= ${MAKE}
.endif
-TOOLS_SYMLINK+= make
+TOOLS_CREATE+= make
TOOLS_REAL_CMD.make= ${MAKE_PROGRAM}
CONFIGURE_ENV+= MAKE=${MAKE_PROGRAM:T:Q}
diff --git a/mk/tools/perl.mk b/mk/tools/perl.mk
index 08881aa1cde..895b9c76d85 100644
--- a/mk/tools/perl.mk
+++ b/mk/tools/perl.mk
@@ -1,4 +1,4 @@
-# $NetBSD: perl.mk,v 1.5 2005/05/02 06:36:29 jlam Exp $
+# $NetBSD: perl.mk,v 1.6 2005/05/10 19:34:02 jlam Exp $
# Create a symlink from ${TOOLS_DIR}/bin/perl to ${PERL5} when USE_PERL5
# is defined. This ensures that when "perl" is invoked, the pkgsrc perl
@@ -11,7 +11,7 @@ MAKEFLAGS+= TOOLS_IGNORE.perl=
. include "../../lang/perl5/buildlink3.mk"
TOOLS_DEPMETHOD.perl?= BUILD_DEPENDS
TOOLS_DEPENDS.perl?= ${BUILDLINK_DEPENDS.perl}:${BUILDLINK_PKGSRCDIR.perl}
-TOOLS_SYMLINK+= perl
+TOOLS_CREATE+= perl
TOOLS_REAL_CMD.perl= ${LOCALBASE}/bin/perl
PERL5= ${TOOLS_REAL_CMD.perl}
. endif