Received: by mail.netbsd.org (Postfix, from userid 605) id 6DD4684D2D; Sun, 21 Jan 2024 03:12:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9E88E84CFE for ; Sun, 21 Jan 2024 03:12:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7-RzVSrz2UVn for ; Sun, 21 Jan 2024 03:12:57 +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 E866384CCC for ; Sun, 21 Jan 2024 03:12:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D9D45FA42; Sun, 21 Jan 2024 03:12:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_17058067763160" MIME-Version: 1.0 Date: Sun, 21 Jan 2024 03:12:56 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/mk/check To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20240121031256.D9D45FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_17058067763160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun Jan 21 03:12:56 UTC 2024 Modified Files: pkgsrc/mk/check: check-files.mk Log Message: mk/check-files: actually enable CHECK_FILES_STRICT The files in ERROR_DIR must not start with a dot, or they are simply ignored. No change in the default configuration, since CHECK_FILES_STRICT defaults to no. To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 pkgsrc/mk/check/check-files.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_17058067763160 Content-Disposition: inline Content-Length: 1276 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/check/check-files.mk diff -u pkgsrc/mk/check/check-files.mk:1.46 pkgsrc/mk/check/check-files.mk:1.47 --- pkgsrc/mk/check/check-files.mk:1.46 Sun Jan 21 02:12:20 2024 +++ pkgsrc/mk/check/check-files.mk Sun Jan 21 03:12:56 2024 @@ -1,4 +1,4 @@ -# $NetBSD: check-files.mk,v 1.46 2024/01/21 02:12:20 rillig Exp $ +# $NetBSD: check-files.mk,v 1.47 2024/01/21 03:12:56 rillig Exp $ # # This file checks that the list of installed files matches the PLIST. # For that purpose it records the file list of LOCALBASE before and @@ -143,11 +143,11 @@ _CHECK_FILES_ERRMSG.prefix= ${ERROR_DIR} _CHECK_FILES_PRE.prefix= ${WRKDIR}/.check-files.prefix.pre _CHECK_FILES_POST.prefix= ${WRKDIR}/.check-files.prefix.post -_CHECK_FILES_ERRMSG.sysconfdir= ${ERROR_DIR}/.check-files-sysconfdir +_CHECK_FILES_ERRMSG.sysconfdir= ${ERROR_DIR}/check-files-sysconfdir _CHECK_FILES_PRE.sysconfdir= ${WRKDIR}/.check-files.sysconfdir.pre _CHECK_FILES_POST.sysconfdir= ${WRKDIR}/.check-files.sysconfdir.post -_CHECK_FILES_ERRMSG.varbase= ${ERROR_DIR}/.check-files-varbase +_CHECK_FILES_ERRMSG.varbase= ${ERROR_DIR}/check-files-varbase _CHECK_FILES_PRE.varbase= ${WRKDIR}/.check-files.varbase.pre _CHECK_FILES_POST.varbase= ${WRKDIR}/.check-files.varbase.post --_----------=_17058067763160--