diff options
author | tv <tv> | 2005-03-21 13:58:22 +0000 |
---|---|---|
committer | tv <tv> | 2005-03-21 13:58:22 +0000 |
commit | f8cd46f5096e87662b3dbd450c2fc52322909296 (patch) | |
tree | fbdeda483e90a40e39978389aec34eb34e321130 | |
parent | 0ecdcdff945e62d34bc938161daa481a30e3cf06 (diff) | |
download | pkgsrc-f8cd46f5096e87662b3dbd450c2fc52322909296.tar.gz |
Don't claim that the "gawk" bundled with Interix is really gawk. It's
old and buggy, and if a package wants USE_GNU_TOOLS+=awk, pull in lang/gawk
instead for less problems.
-rw-r--r-- | mk/tools.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/tools.mk b/mk/tools.mk index 7fef938af27..30d08af518b 100644 --- a/mk/tools.mk +++ b/mk/tools.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.mk,v 1.52 2005/02/11 15:59:41 tv Exp $ +# $NetBSD: tools.mk,v 1.53 2005/03/21 13:58:22 tv Exp $ # # This Makefile creates a ${TOOLS_DIR} directory and populates the bin # subdir with tools that hide the ones outside of ${TOOLS_DIR}. @@ -132,7 +132,8 @@ USE_GNU_TOOLS= ${_tools} # system, so no need to pull in the pkgsrc versions; we will use these # instead. # -_TOOLS_OPSYS_HAS_GNU.awk+= FreeBSD-*-* Interix-*-* Linux-*-* OpenBSD-*-* +#_TOOLS_OPSYS_HAS_GNU.awk+= Interix-*-* # too old and buggy; use lang/gawk +_TOOLS_OPSYS_HAS_GNU.awk+= FreeBSD-*-* Linux-*-* OpenBSD-*-* _TOOLS_OPSYS_HAS_GNU.awk+= NetBSD-1.[0-6]*-* DragonFly-*-* _TOOLS_OPSYS_HAS_GNU.grep+= Darwin-*-* FreeBSD-*-* Linux-*-* _TOOLS_OPSYS_HAS_GNU.grep+= NetBSD-*-* OpenBSD-*-* DragonFly-*-* |