diff options
author | rillig <rillig@pkgsrc.org> | 2020-05-20 06:09:03 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-05-20 06:09:03 +0000 |
commit | e67afe214b2f562c8ef976023915ce7b2b010f08 (patch) | |
tree | 8bc9014eb0b670d92e8e9c47b03b37496a61c767 /editors/em | |
parent | 96ab5fbe38d2155394682ee895e27fecfaf99b75 (diff) | |
download | pkgsrc-e67afe214b2f562c8ef976023915ce7b2b010f08.tar.gz |
mark packages that fail with -Werror=char-subscripts
These packages are susceptible to bugs when confronted with non-ASCII
characters.
See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94182.
It takes some time to analyze and fix these individually, therefore they
are only marked as "needs work".
Diffstat (limited to 'editors/em')
-rw-r--r-- | editors/em/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/editors/em/Makefile b/editors/em/Makefile index 0bf291e2382..2fb8d7546e5 100644 --- a/editors/em/Makefile +++ b/editors/em/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2017/12/24 09:46:05 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2020/05/20 06:09:03 rillig Exp $ DISTNAME= em-1.0.0 CATEGORIES= editors @@ -12,4 +12,11 @@ LICENSE= public-domain GNU_CONFIGURE= yes AUTO_MKDIRS= yes +# em1.c: In function 'advance': +# em1.c:1554:11: error: array subscript has type 'char' [-Werror=char-subscripts] +# braslist[*ep++] = lp; +# ^ +# Maybe fix this later. +BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts + .include "../../mk/bsd.pkg.mk" |