Received: by mail.netbsd.org (Postfix, from userid 605) id CFC0E84D66; Sun, 3 May 2020 16:06:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 569AE84D47 for ; Sun, 3 May 2020 16:06:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id p-PDmhmPh0dT for ; Sun, 3 May 2020 16:06:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A6FD484CD4 for ; Sun, 3 May 2020 16:06:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 949F3FB27; Sun, 3 May 2020 16:06:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1588521961258920" MIME-Version: 1.0 Date: Sun, 3 May 2020 16:06:01 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/games/bridge-hands To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200503160601.949F3FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1588521961258920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun May 3 16:06:01 UTC 2020 Modified Files: pkgsrc/games/bridge-hands: Makefile Log Message: games/bridge-hands: document harmless array[char] To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/games/bridge-hands/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1588521961258920 Content-Disposition: inline Content-Length: 774 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/bridge-hands/Makefile diff -u pkgsrc/games/bridge-hands/Makefile:1.15 pkgsrc/games/bridge-hands/Makefile:1.16 --- pkgsrc/games/bridge-hands/Makefile:1.15 Sat Oct 6 11:54:32 2012 +++ pkgsrc/games/bridge-hands/Makefile Sun May 3 16:06:01 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2012/10/06 11:54:32 asau Exp $ +# $NetBSD: Makefile,v 1.16 2020/05/03 16:06:01 rillig Exp $ DISTNAME= hands-2.0.bsd386 PKGNAME= bridge-hands-2.0 @@ -14,6 +14,9 @@ EXTRACT_ELEMENTS= hands/source WRKSRC= ${WRKDIR}/hands/source INSTALLATION_DIRS= bin +# harmless; only indexes 0..51 are used. +BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts + do-build: cd ${WRKSRC}; ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} \ -o hands hands.c ${LIBS} --_----------=_1588521961258920--