diff options
author | marino <marino@pkgsrc.org> | 2012-10-12 08:01:00 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2012-10-12 08:01:00 +0000 |
commit | dfc173641aa8c3f7feadf1a036304898abdc785d (patch) | |
tree | 1dac5f0bbc6658e4784a3424ba2969580eac6b81 | |
parent | e9a483c93a2610e30dd31cfcced8d79cf27293bb (diff) | |
download | pkgsrc-dfc173641aa8c3f7feadf1a036304898abdc785d.tar.gz |
devel/cmph: Fix build for gcc 4.6+
Remove -Werror (catches -Wunused-but-set-variable) to fix build.
-rw-r--r-- | devel/cmph/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/cmph/Makefile b/devel/cmph/Makefile index 68498a880dc..6cd76258d75 100644 --- a/devel/cmph/Makefile +++ b/devel/cmph/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2012/04/17 17:41:40 joerg Exp $ +# $NetBSD: Makefile,v 1.4 2012/10/12 08:01:00 marino Exp $ DISTNAME= cmph-1.1 PKGREVISION= 1 @@ -18,4 +18,6 @@ GNU_CONFIGURE= yes TEST_DIRS= tests TEST_TARGET= check +BUILDLINK_TRANSFORM+= rm:-Werror + .include "../../mk/bsd.pkg.mk" |