diff options
author | joerg <joerg> | 2014-09-22 11:55:59 +0000 |
---|---|---|
committer | joerg <joerg> | 2014-09-22 11:55:59 +0000 |
commit | 4783c838bc48bc13fdaacd2a6c334d2493fb3485 (patch) | |
tree | 471c36236ad57acf7795309c0a3bbaf0e51e0e38 /sysutils | |
parent | 27d701c5bd891488d80c9377c0df7649822ff6a5 (diff) | |
download | pkgsrc-4783c838bc48bc13fdaacd2a6c334d2493fb3485.tar.gz |
Don't bail out on unused local typedefs.
Diffstat (limited to 'sysutils')
-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 |