diff options
author | joerg <joerg@pkgsrc.org> | 2014-12-11 22:15:30 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-12-11 22:15:30 +0000 |
commit | 0d744b55b3ddf0820c60f7825b5f79dc79660c76 (patch) | |
tree | b9cb5b07d719af3d1d0f68aca8783cd7845723ea /sysutils | |
parent | dad3fbd571df5ce4f4962d04a996a2f1b6fcba2b (diff) | |
download | pkgsrc-0d744b55b3ddf0820c60f7825b5f79dc79660c76.tar.gz |
Ignore use of always non-null pointers as truth value.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/xenkernel41/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysutils/xenkernel41/Makefile b/sysutils/xenkernel41/Makefile index e85671fcb12..bd484630906 100644 --- a/sysutils/xenkernel41/Makefile +++ b/sysutils/xenkernel41/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2014/11/27 15:36:01 bouyer Exp $ +# $NetBSD: Makefile,v 1.42 2014/12/11 22:15:30 joerg Exp $ VERSION= 4.1.6.1 DISTNAME= xen-${VERSION} @@ -38,7 +38,8 @@ MESSAGE_SUBST+= XENKERNELDIR=${XENKERNELDIR:Q} EXTRA_CFLAGS+= -Qunused-arguments -no-integrated-as -Wno-error=format \ -Wno-error=parentheses-equality -Wno-error=enum-conversion \ -Wno-error=unused-function \ - -Wno-error=tautological-pointer-compare + -Wno-error=tautological-pointer-compare \ + -Wno-error=pointer-bool-conversion .endif MAKE_ENV+= EXTRA_CFLAGS=${EXTRA_CFLAGS:Q} |