diff options
author | joerg <joerg@pkgsrc.org> | 2014-09-22 11:49:42 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-09-22 11:49:42 +0000 |
commit | eaca98b1d78513be3f8703354abd0c1dee73d655 (patch) | |
tree | bb74b3f37815a03d29ce05d7381a9e9c38fbc2af /cross | |
parent | bac9139dbb7863281091835031a224eb059b9fd1 (diff) | |
download | pkgsrc-eaca98b1d78513be3f8703354abd0c1dee73d655.tar.gz |
Don't bail out on unused local typedefs with clang.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/bossa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/bossa/Makefile b/cross/bossa/Makefile index 78466f33a4d..7ad8afd08cc 100644 --- a/cross/bossa/Makefile +++ b/cross/bossa/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2014/05/05 00:47:42 ryoon Exp $ +# $NetBSD: Makefile,v 1.6 2014/09/22 11:49:42 joerg Exp $ PKGNAME= bossa-20140109 DISTNAME= b-o-s-s-a-code-05bfcc39bc0453c3028b1161175b95a81af7a901 @@ -25,7 +25,7 @@ USE_TOOLS= gmake .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) -CXXFLAGS+= -Wno-error=tautological-compare +CXXFLAGS+= -Wno-error=tautological-compare -Wno-error=unused-local-typedef .endif .include "../../devel/readline/buildlink3.mk" |