diff options
author | rillig <rillig@pkgsrc.org> | 2020-05-25 05:18:35 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-05-25 05:18:35 +0000 |
commit | 4b0201a241a4f4bc5787327d98d4f29ca3d78f12 (patch) | |
tree | 72f8b483bdae642d3d4b47fd31803a8623c96e43 /biology/fastp/Makefile | |
parent | 49637db6422855c4fb049e3af0889f39150981f2 (diff) | |
download | pkgsrc-4b0201a241a4f4bc5787327d98d4f29ca3d78f12.tar.gz |
biology/fastp: document possible array[char] bug
Diffstat (limited to 'biology/fastp/Makefile')
-rw-r--r-- | biology/fastp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/biology/fastp/Makefile b/biology/fastp/Makefile index 99304103002..2cebbf6f46c 100644 --- a/biology/fastp/Makefile +++ b/biology/fastp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2019/05/04 16:15:25 bacon Exp $ +# $NetBSD: Makefile,v 1.2 2020/05/25 05:18:35 rillig Exp $ DISTNAME= fastp-0.20.0 CATEGORIES= biology @@ -15,6 +15,12 @@ USE_TOOLS+= gmake BUILD_TARGET= fastp PTHREAD_AUTO_VARS= yes +# src/stats.cpp: In member function 'void Stats::statRead(Read*)': +# src/stats.cpp:248:29: error: array subscript has type 'char' [-Werror=char-subscripts] +# mCycleQ30Bases[b][i]++; +# Maybe fix this later. +BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts + post-install: ${STRIP} ${DESTDIR}${PREFIX}/bin/fastp |