diff options
author | jschauma <jschauma> | 2004-09-07 01:23:10 +0000 |
---|---|---|
committer | jschauma <jschauma> | 2004-09-07 01:23:10 +0000 |
commit | f005d9a62e1b21a20c8a0abd45b3a7fb7dc1f551 (patch) | |
tree | 107e23f432ca2f8e0b54810f7a4a9acd2f446b73 /x11/gtk2 | |
parent | d12cbc4f8eb236b165608c2a79d715f7048d7161 (diff) | |
download | pkgsrc-f005d9a62e1b21a20c8a0abd45b3a7fb7dc1f551.tar.gz |
If we're on IRIX and we're using gcc, then, apparently, we need gawk,
as otherwise the awk invocation in libtool breaks complaining about
the ``Input record [...] too long'' near the end of the build process.
(Oddly this does not occur using the mipspro compiler.)
Diffstat (limited to 'x11/gtk2')
-rw-r--r-- | x11/gtk2/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/x11/gtk2/Makefile b/x11/gtk2/Makefile index 6c8fc2f6f96..6010bf19fc1 100644 --- a/x11/gtk2/Makefile +++ b/x11/gtk2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.59 2004/08/31 11:53:07 jmmv Exp $ +# $NetBSD: Makefile,v 1.60 2004/09/07 01:23:10 jschauma Exp $ # DISTNAME= gtk+-2.4.9 @@ -57,6 +57,8 @@ PRINT_PLIST_AWK+= /^@dirrm share\/themes\/Default$$/ \ # which uses ## instead and does what it should. .if !empty(CC_VERSION:MSun) CPPFLAGS+= -Xc +.elif ${OPSYS} == "IRIX" && !empty(CC_VERSION:Mgcc*) +USE_GNU_TOOLS+= awk .endif post-install: |