diff options
author | joerg <joerg> | 2013-09-27 11:35:07 +0000 |
---|---|---|
committer | joerg <joerg> | 2013-09-27 11:35:07 +0000 |
commit | 9e2792cecc9639dde49711f9ef2a29d43f0cf60a (patch) | |
tree | bb420e95d07d7c357b4d5e7b46a974f896879801 /sysutils/xentools3 | |
parent | a212dcee6dfcd8b9361319c39da18c50b08f7d7d (diff) | |
download | pkgsrc-9e2792cecc9639dde49711f9ef2a29d43f0cf60a.tar.gz |
Make -Wunused-function non-fatal for clang.
Diffstat (limited to 'sysutils/xentools3')
-rw-r--r-- | sysutils/xentools3/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysutils/xentools3/Makefile b/sysutils/xentools3/Makefile index af06eb615d7..9fa87417b48 100644 --- a/sysutils/xentools3/Makefile +++ b/sysutils/xentools3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2013/06/04 07:38:49 wiz Exp $ +# $NetBSD: Makefile,v 1.36 2013/09/27 11:35:07 joerg Exp $ VERSION= 3.1.4 DISTNAME= xen-${VERSION} @@ -142,7 +142,8 @@ OWN_DIRS= ${PKG_SYSCONFDIR}/scripts /var/log/xen EXTRA_HOSTCFLAGS+= -Wno-error=ignored-attributes -Wno-error=format-security EXTRA_CFLAGS+= -Wno-error=ignored-attributes -no-integrated-as \ -Wno-error=tautological-compare -Wno-error=null-dereference \ - -Wno-error=self-assign -Wno-error=sometimes-uninitialized + -Wno-error=self-assign -Wno-error=sometimes-uninitialized \ + -Wno-error=unused-function .endif MAKE_ENV+= EXTRA_HOSTCFLAGS=${EXTRA_HOSTCFLAGS:Q} EXTRA_CFLAGS=${EXTRA_CFLAGS:Q} |