diff options
author | joerg <joerg> | 2013-09-10 14:14:02 +0000 |
---|---|---|
committer | joerg <joerg> | 2013-09-10 14:14:02 +0000 |
commit | 3c59628a6b393d68a0864288c608e0027119a0a7 (patch) | |
tree | 20ddda27ad9ead7a344b3149f42f58439f79c06c /comms | |
parent | 10d996e605549bf14909ccde1bfb6115c591e7c2 (diff) | |
download | pkgsrc-3c59628a6b393d68a0864288c608e0027119a0a7.tar.gz |
Continue on pointer sign warnings from clang.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/kyopon/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/comms/kyopon/Makefile b/comms/kyopon/Makefile index e41ec6399f6..e8420cfc0bb 100644 --- a/comms/kyopon/Makefile +++ b/comms/kyopon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2013/04/06 03:45:07 rodent Exp $ +# $NetBSD: Makefile,v 1.13 2013/09/10 14:14:02 joerg Exp $ DISTNAME= kyopon-0.5 CATEGORIES= comms @@ -12,6 +12,9 @@ ONLY_FOR_PLATFORM= NetBSD-*-* DragonFly-*-* USE_BSD_MAKEFILE= yes +CWARNFLAGS.clang= -Wno-error=pointer-sign +MAKE_ENV+= CWARNFLAGS.clang=${CWARNFLAGS.clang:Q} + INSTALLATION_DIRS= bin ${PKGMANDIR}/cat1 ${PKGMANDIR}/man1 .include "../../mk/bsd.pkg.mk" |