diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-03 20:41:53 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-03 20:41:53 +0000 |
commit | 3f770348b7be434393d4a294a7727d99bd363676 (patch) | |
tree | 36fa4f0df1a28f6cf6d6d681bd6844d2218dc39f /mk/tools/tools.SunOS.mk | |
parent | 3067665ace328bb83325a03a1125b51716ad97c3 (diff) | |
download | pkgsrc-3f770348b7be434393d4a294a7727d99bd363676.tar.gz |
Teach the new tools framework about INSTALL and set the appropriate
default value for each platform. Currently, the replacement tools
comes from sysutils/coreutils, but where there is no native BSD install
program, bootstrap-pkgsrc should probably be made to provide an install
shell script as an alternative, and mk/tools/bootstrap.mk should be
amended accordingly.
Also remove one use of ${TYPE} in pkgsrc (bsd.pkg.mk) under the new tools
framework.
Diffstat (limited to 'mk/tools/tools.SunOS.mk')
-rw-r--r-- | mk/tools/tools.SunOS.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/tools/tools.SunOS.mk b/mk/tools/tools.SunOS.mk index c4fdfd71baa..db1c16bd28b 100644 --- a/mk/tools/tools.SunOS.mk +++ b/mk/tools/tools.SunOS.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.SunOS.mk,v 1.7 2005/05/03 16:30:34 jlam Exp $ +# $NetBSD: tools.SunOS.mk,v 1.8 2005/05/03 20:41:53 jlam Exp $ # # System-supplied tools for the Solaris operating system. @@ -38,6 +38,7 @@ TOOLS_PLATFORM.gzip?= /usr/bin/gzip -nf ${GZIP} TOOLS_PLATFORM.head?= /usr/bin/head TOOLS_PLATFORM.hostname?= /bin/hostname TOOLS_PLATFORM.id?= /usr/xpg4/bin/id +TOOLS_PLATFORM.install?= /usr/ucb/install TOOLS_PLATFORM.ldconfig?= ${TOOLS_PLATFORM.true} TOOLS_PLATFORM.ln?= /usr/bin/ln TOOLS_PLATFORM.ls?= /usr/bin/ls |