Received: by mail.netbsd.org (Postfix, from userid 605) id 7249784D7B; Sat, 16 May 2020 13:01:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ED93484D33 for ; Sat, 16 May 2020 13:01:15 +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 eS6UnlUR4LJS for ; Sat, 16 May 2020 13:01:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 45F3484CF1 for ; Sat, 16 May 2020 13:01:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3AD7BFB27; Sat, 16 May 2020 13:01:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158963407563590" MIME-Version: 1.0 Date: Sat, 16 May 2020 13:01:15 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/games/ztrack To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200516130115.3AD7BFB27@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. --_----------=_158963407563590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sat May 16 13:01:15 UTC 2020 Modified Files: pkgsrc/games/ztrack: Makefile Log Message: games/ztrack: fix build in SUBST_NOOP_OK=no mode The sed command is not classified as identity substitution by mk/scripts/subst-identity.awk since the s,,, is preceded by a regular expression. Since this is an edge case, it will not be implemented there. Otherwise the other addressing modes would also have to be implemented. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/games/ztrack/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158963407563590 Content-Disposition: inline Content-Length: 747 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/ztrack/Makefile diff -u pkgsrc/games/ztrack/Makefile:1.2 pkgsrc/games/ztrack/Makefile:1.3 --- pkgsrc/games/ztrack/Makefile:1.2 Thu Jul 28 19:31:28 2016 +++ pkgsrc/games/ztrack/Makefile Sat May 16 13:01:15 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2016/07/28 19:31:28 leot Exp $ +# $NetBSD: Makefile,v 1.3 2020/05/16 13:01:15 rillig Exp $ DISTNAME= ztrack-1.0 PKGREVISION= 1 @@ -21,6 +21,7 @@ SUBST_STAGE.makefile= pre-configure SUBST_MESSAGE.makefile= Link with the proper curses type SUBST_FILES.makefile= Makefile SUBST_SED.makefile= -e '/LIBS/ s,-lncurses,-l${BUILDLINK_LIBNAME.curses},' +SUBST_NOOP_OK.makefile= yes .include "../../mk/curses.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_158963407563590--