diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2005-09-22 09:11:37 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2005-09-22 09:11:37 +0000 |
commit | c9873ceec5ee8f6bcd5f356b330b56984a7f7509 (patch) | |
tree | e796484a72aab10efd85b1db1eaaf8463a882e16 /security | |
parent | 34a92af7a2edece027bcd9cbbcd5111d900254ab (diff) | |
download | pkgsrc-c9873ceec5ee8f6bcd5f356b330b56984a7f7509.tar.gz |
Do not require GNU AWK (aka gawk) on NetBSD >= 3.0, because the
native awk package is enough to build/install the package.
Diffstat (limited to 'security')
-rw-r--r-- | security/libgpg-error/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/security/libgpg-error/Makefile b/security/libgpg-error/Makefile index d7c709d1daf..95e54266d5c 100644 --- a/security/libgpg-error/Makefile +++ b/security/libgpg-error/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2005/05/22 20:08:30 jlam Exp $ +# $NetBSD: Makefile,v 1.13 2005/09/22 09:11:37 xtraeme Exp $ # DISTNAME= libgpg-error-1.0 @@ -18,7 +18,9 @@ USE_PKGLOCALEDIR= YES .include "../../mk/bsd.prefs.mk" # XXX See HACKS -.if ${OPSYS} != IRIX +.if ${OPSYS} == IRIX || !empty(MACHINE_PLATFORM:MNetBSD-3*) +USE_TOOLS+= nawk +.else USE_TOOLS+= gawk .endif |