diff options
author | jlam <jlam> | 2005-07-15 18:27:48 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-07-15 18:27:48 +0000 |
commit | d2eea181f0c5ef51db2ef63ecadc8d3add70bd6b (patch) | |
tree | 91f275af994eade5936cfd1677c803fdc48b0f89 /Makefile | |
parent | 6b7892b7405d77307d3b0c21dd5229fd6fa9d116 (diff) | |
download | pkgsrc-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 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,15 +1,15 @@ -# $NetBSD: Makefile,v 1.73 2005/06/06 22:30:19 kristerw Exp $ +# $NetBSD: Makefile,v 1.74 2005/07/15 18:27:48 jlam Exp $ # # tools used by this Makefile -PKGSRC_USE_TOOLS+= [ awk cat cmp echo env expr false fgrep grep mv \ - rm sed sort wc +USE_TOOLS+= [ awk cat cmp echo env expr false fgrep grep mv rm sed \ + sort wc # additional tools used by bsd.pkg.subdir.mk -PKGSRC_USE_TOOLS+= basename touch +USE_TOOLS+= basename touch # additional tools used by bsd.bulk-pkg.mk -PKGSRC_USE_TOOLS+= egrep find ls sh tee true tsort +USE_TOOLS+= egrep find ls sh tee true tsort .include "mk/bsd.prefs.mk" |