Received: by mail.netbsd.org (Postfix, from userid 605) id 0C89084E96; Sun, 21 Jan 2024 00:34:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3C83884D95 for ; Sun, 21 Jan 2024 00:34:27 +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 69GFw42UOFQZ for ; Sun, 21 Jan 2024 00:34:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B453884CD9 for ; Sun, 21 Jan 2024 00:34:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A9AABFA42; Sun, 21 Jan 2024 00:34:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1705797266154260" MIME-Version: 1.0 Date: Sun, 21 Jan 2024 00:34:26 +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: <20240121003426.A9AABFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1705797266154260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun Jan 21 00:34:26 UTC 2024 Modified Files: pkgsrc/mk/check: check-files.mk Log Message: mk/check-file: use common filename prefix in WRKDIR To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 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. --_----------=_1705797266154260 Content-Disposition: inline Content-Length: 1680 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.44 pkgsrc/mk/check/check-files.mk:1.45 --- pkgsrc/mk/check/check-files.mk:1.44 Sun Jan 21 00:21:42 2024 +++ pkgsrc/mk/check/check-files.mk Sun Jan 21 00:34:26 2024 @@ -1,4 +1,4 @@ -# $NetBSD: check-files.mk,v 1.44 2024/01/21 00:21:42 rillig Exp $ +# $NetBSD: check-files.mk,v 1.45 2024/01/21 00:34:26 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 @@ -134,16 +134,16 @@ _CHECK_FILES_SKIP_FILTER= ${GREP} -vx ${ # determine if the package is installing files where it shouldn't be. # _CHECK_FILES_ERRMSG.prefix= ${ERROR_DIR}/check-files-prefix -_CHECK_FILES_PRE.prefix= ${WRKDIR}/.prefix.pre -_CHECK_FILES_POST.prefix= ${WRKDIR}/.prefix.post +_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_PRE.sysconfdir= ${WRKDIR}/.sysconfdir.pre -_CHECK_FILES_POST.sysconfdir= ${WRKDIR}/.sysconfdir.post +_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_PRE.varbase= ${WRKDIR}/.varbase.pre -_CHECK_FILES_POST.varbase= ${WRKDIR}/.varbase.post +_CHECK_FILES_PRE.varbase= ${WRKDIR}/.check-files.varbase.pre +_CHECK_FILES_POST.varbase= ${WRKDIR}/.check-files.varbase.post _CHECK_FILES_ERRMSGS= # empty _CHECK_FILES_ERRMSGS+= ${_CHECK_FILES_ERRMSG.prefix} --_----------=_1705797266154260--