diff options
author | schwarz <schwarz@pkgsrc.org> | 2006-10-15 16:43:37 +0000 |
---|---|---|
committer | schwarz <schwarz@pkgsrc.org> | 2006-10-15 16:43:37 +0000 |
commit | 6e27c9edb514296f615002effcef90418eb021ba (patch) | |
tree | c3693167e98766020f52bedd6d9ec20c46b13bdd /news/nn/Makefile | |
parent | aa237578e17c34a2bcb65e55644309eb4a51d6c4 (diff) | |
download | pkgsrc-6e27c9edb514296f615002effcef90418eb021ba.tar.gz |
- do not explicitly pass CC to MAKE_ENV as pkgsrc already does so
- added fixes for IRIX
Diffstat (limited to 'news/nn/Makefile')
-rw-r--r-- | news/nn/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/news/nn/Makefile b/news/nn/Makefile index 7ced06bdb83..ec9528fa01d 100644 --- a/news/nn/Makefile +++ b/news/nn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2006/10/15 10:27:53 schwarz Exp $ +# $NetBSD: Makefile,v 1.32 2006/10/15 16:43:37 schwarz Exp $ DISTNAME= nn-6.7.3 CATEGORIES= news @@ -32,7 +32,9 @@ MFILE= m-${LOWER_ARCH}.h CPP+= -traditional .endif -MAKE_ENV+= CC=${CC:Q} +.if ${OPSYS} == "IRIX" +CPPFLAGS+= -DHAVE_TERMIO_H +.endif post-patch: @${SED} -e ' \ |