pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk/check



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.

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
 



Home | Main Index | Thread Index | Old Index