diff options
author | jlam <jlam@pkgsrc.org> | 2005-07-15 18:27:48 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-07-15 18:27:48 +0000 |
commit | bf9129c41e2b7be767d2c17d60e379900e6dda5f (patch) | |
tree | 91f275af994eade5936cfd1677c803fdc48b0f89 /pkgtools/prereq-readme | |
parent | 2e277f69ef4ed4af438f9af4c09272a7ccbb2475 (diff) | |
download | pkgsrc-bf9129c41e2b7be767d2c17d60e379900e6dda5f.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 'pkgtools/prereq-readme')
-rw-r--r-- | pkgtools/prereq-readme/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgtools/prereq-readme/Makefile b/pkgtools/prereq-readme/Makefile index 01f3abc5bde..96aeacf45d2 100644 --- a/pkgtools/prereq-readme/Makefile +++ b/pkgtools/prereq-readme/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2005/05/22 01:33:31 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.3 2005/07/15 18:27:53 jlam Exp $ # DISTNAME= prereq-readme-20050521 @@ -18,15 +18,15 @@ NO_INSTALL= # defined NO_PACKAGE= # defined # list all the tools we use -PKGSRC_USE_TOOLS+= awk -PKGSRC_USE_TOOLS+= cmp -PKGSRC_USE_TOOLS+= echo -PKGSRC_USE_TOOLS+= expr -PKGSRC_USE_TOOLS+= fgrep -PKGSRC_USE_TOOLS+= find -PKGSRC_USE_TOOLS+= grep -PKGSRC_USE_TOOLS+= sed -PKGSRC_USE_TOOLS+= setenv -PKGSRC_USE_TOOLS+= sort +USE_TOOLS+= awk +USE_TOOLS+= cmp +USE_TOOLS+= echo +USE_TOOLS+= expr +USE_TOOLS+= fgrep +USE_TOOLS+= find +USE_TOOLS+= grep +USE_TOOLS+= sed +USE_TOOLS+= setenv +USE_TOOLS+= sort .include "../../mk/bsd.pkg.mk" |