diff options
author | grant <grant> | 2004-06-15 13:41:43 +0000 |
---|---|---|
committer | grant <grant> | 2004-06-15 13:41:43 +0000 |
commit | 59dd17932c21bbfba17033ab8c19ed79b94176c0 (patch) | |
tree | 4fff71ade4030b2f1a08f82b47fdee94b5b6755d /mk | |
parent | f15650fce22b8ae1dba0ecc505e1fc535d279059 (diff) | |
download | pkgsrc-59dd17932c21bbfba17033ab8c19ed79b94176c0.tar.gz |
NetBSD 2.0 and above does not have GNU awk, make it so.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tools.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/tools.mk b/mk/tools.mk index 230e570c466..9f885a0337c 100644 --- a/mk/tools.mk +++ b/mk/tools.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.mk,v 1.34 2004/04/27 21:05:38 dmcmahill Exp $ +# $NetBSD: tools.mk,v 1.35 2004/06/15 13:41:43 grant Exp $ # # This Makefile creates a ${TOOLS_DIR} directory and populates the bin # subdir with tools that hide the ones outside of ${TOOLS_DIR}. @@ -131,8 +131,8 @@ USE_GNU_TOOLS?= # empty # system, so no need to pull in the pkgsrc versions; we will use these # instead. # -_TOOLS_OPSYS_HAS_GNU.awk+= FreeBSD-*-* Interix-*-* Linux-*-* NetBSD-*-* -_TOOLS_OPSYS_HAS_GNU.awk+= OpenBSD-*-* +_TOOLS_OPSYS_HAS_GNU.awk+= FreeBSD-*-* Interix-*-* Linux-*-* OpenBSD-*-* +_TOOLS_OPSYS_HAS_GNU.awk+= NetBSD-1.[0-6]*-* _TOOLS_OPSYS_HAS_GNU.grep+= Darwin-*-* FreeBSD-*-* Linux-*-* _TOOLS_OPSYS_HAS_GNU.grep+= NetBSD-*-* OpenBSD-*-* _TOOLS_OPSYS_HAS_GNU.lex+= FreeBSD-*-* Interix-*-* Linux-*-* NetBSD-*-* |