diff options
author | joerg <joerg@pkgsrc.org> | 2014-09-22 11:55:59 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-09-22 11:55:59 +0000 |
commit | b39a23a041945a70871ec370f7fc49d02c963739 (patch) | |
tree | 471c36236ad57acf7795309c0a3bbaf0e51e0e38 /sysutils/xenkernel33 | |
parent | 64ac6d9c514f5e769c5987d13d4efff1affef762 (diff) | |
download | pkgsrc-b39a23a041945a70871ec370f7fc49d02c963739.tar.gz |
Don't bail out on unused local typedefs.
Diffstat (limited to 'sysutils/xenkernel33')
-rw-r--r-- | sysutils/xenkernel33/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysutils/xenkernel33/Makefile b/sysutils/xenkernel33/Makefile index 824593b2253..67280d676f8 100644 --- a/sysutils/xenkernel33/Makefile +++ b/sysutils/xenkernel33/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2014/05/09 07:37:20 wiz Exp $ +# $NetBSD: Makefile,v 1.28 2014/09/22 11:55:59 joerg Exp $ VERSION= 3.3.2 DISTNAME= xen-${VERSION} @@ -50,7 +50,8 @@ MESSAGE_SUBST+= XENKERNELDIR=${XENKERNELDIR:Q} .if !empty(PKGSRC_COMPILER:Mclang) EXTRA_CFLAGS+= -Qunused-arguments -no-integrated-as -Wno-error=format \ -Wno-error=parentheses-equality -Wno-error=enum-conversion \ - -Wno-error=tautological-compare -Wno-error=unused-function + -Wno-error=tautological-compare -Wno-error=unused-function \ + -Wno-error=unused-local-typedef BUILDLINK_TRANSFORM+= rm:-fno-reorder-blocks .endif |