diff options
author | wiz <wiz@pkgsrc.org> | 2017-10-02 14:14:04 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2017-10-02 14:14:04 +0000 |
commit | 3a826ce720c048e3247dab2d47e2f242099adcc3 (patch) | |
tree | 921342f73dacfb2a32fbd6211f1deff148474565 /mk/check | |
parent | bdf3f0907eb0e651c3922971c7a802a7b14aa227 (diff) | |
download | pkgsrc-3a826ce720c048e3247dab2d47e2f242099adcc3.tar.gz |
mk: check for installed files that are not in PLIST by default
Previously, this was only enabled with PKG_DEVELOPER.
Ok kamil@ jperkin@
Diffstat (limited to 'mk/check')
-rw-r--r-- | mk/check/check-files.mk | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/mk/check/check-files.mk b/mk/check/check-files.mk index 4f06adcd359..031d39fb4e8 100644 --- a/mk/check/check-files.mk +++ b/mk/check/check-files.mk @@ -1,4 +1,4 @@ -# $NetBSD: check-files.mk,v 1.35 2017/06/14 16:23:09 prlw1 Exp $ +# $NetBSD: check-files.mk,v 1.36 2017/10/02 14:14:04 wiz 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 @@ -10,7 +10,7 @@ # CHECK_FILES # "yes" to enable the check, "no" to disable it. # -# Default value: "yes" for PKG_DEVELOPERs, "no" otherwise. +# Default value: "yes" # # CHECK_FILES_STRICT # When set to "yes", VARBASE and PKG_SYSCONFDIR are checked in @@ -29,11 +29,7 @@ _VARGROUPS+= check-files _USER_VARS.check-files= CHECK_FILES CHECK_FILES_STRICT _PKG_VARS.check-files= CHECK_FILES_SKIP -.if ${PKG_DEVELOPER:Uno} != "no" CHECK_FILES?= yes -.else -CHECK_FILES?= no -.endif CHECK_FILES_STRICT?= no # Info index files updated when a new info file is added. |