diff options
author | rillig <rillig@pkgsrc.org> | 2020-05-25 05:37:37 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-05-25 05:37:37 +0000 |
commit | 83213508cc8e5f3216f562b1502103893d95925c (patch) | |
tree | 01bb8317f09d43b995bde1548dbaab0697a99d4b /misc | |
parent | bf72a8b2facfcc212a100da24ac38bc5a95033bd (diff) | |
download | pkgsrc-83213508cc8e5f3216f562b1502103893d95925c.tar.gz |
misc/lile: document possible array[char] bug
Diffstat (limited to 'misc')
-rw-r--r-- | misc/lile/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/misc/lile/Makefile b/misc/lile/Makefile index 4f29fd8b837..25626999781 100644 --- a/misc/lile/Makefile +++ b/misc/lile/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2012/10/08 09:57:29 asau Exp $ +# $NetBSD: Makefile,v 1.17 2020/05/25 05:37:37 rillig Exp $ DISTNAME= lile-2.0 PKGNAME= ile-2.0 @@ -14,6 +14,13 @@ NOT_FOR_PLATFORM= Linux-*-* USE_TOOLS+= gzcat +# ile.c: In function 'delete_word': +# ile.c:729:32: error: array subscript has type 'char' [-Werror=char-subscripts] +# for (; (point > 0) && (delimit[line[point - 1]]); point--) +# ^ +# Maybe fix this later. +BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts + INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 post-patch: |