Received: by mail.netbsd.org (Postfix, from userid 605) id DD4A684D8A; Thu, 30 Apr 2020 23:51:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 678D484D84 for ; Thu, 30 Apr 2020 23:51:16 +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 RmdrhdgBzu53 for ; Thu, 30 Apr 2020 23:51:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id C1C9484CE3 for ; Thu, 30 Apr 2020 23:51:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B9280FB27; Thu, 30 Apr 2020 23:51:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158829067525390" MIME-Version: 1.0 Date: Thu, 30 Apr 2020 23:51:15 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200430235115.B9280FB27@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. --_----------=_158829067525390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu Apr 30 23:51:15 UTC 2020 Modified Files: pkgsrc/mk: subst.mk Log Message: Terminate case properly To generate a diff of this commit: cvs rdiff -u -r1.86 -r1.87 pkgsrc/mk/subst.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158829067525390 Content-Disposition: inline Content-Length: 980 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/subst.mk diff -u pkgsrc/mk/subst.mk:1.86 pkgsrc/mk/subst.mk:1.87 --- pkgsrc/mk/subst.mk:1.86 Wed Apr 29 22:46:42 2020 +++ pkgsrc/mk/subst.mk Thu Apr 30 23:51:15 2020 @@ -1,4 +1,4 @@ -# $NetBSD: subst.mk,v 1.86 2020/04/29 22:46:42 rillig Exp $ +# $NetBSD: subst.mk,v 1.87 2020/04/30 23:51:15 joerg Exp $ # # The subst framework replaces text in one or more files in the WRKSRC # directory. Packages can define several ``classes'' of replacements. @@ -226,7 +226,7 @@ ${_SUBST_COOKIE.${class}}: case $$noop_count in \ ('') ;; \ (+) ${FAIL_MSG} "[subst.mk:${class}] The filename pattern \"$$noop_patterns\" has no effect.";; \ - (*) ${FAIL_MSG} "[subst.mk:${class}] The filename patterns \"$$noop_patterns\" have no effect."; \ + (*) ${FAIL_MSG} "[subst.mk:${class}] The filename patterns \"$$noop_patterns\" have no effect.";; \ esac; \ ${TOUCH} ${TOUCH_FLAGS} ${.TARGET}.tmp; \ ${MV} ${.TARGET}.tmp ${.TARGET} --_----------=_158829067525390--