summaryrefslogtreecommitdiff
path: root/mk/check/check-files.mk
diff options
context:
space:
mode:
authorbad <bad@pkgsrc.org>2010-08-24 19:08:28 +0000
committerbad <bad@pkgsrc.org>2010-08-24 19:08:28 +0000
commitff39331baaa3cbbfade0d1885f08bb2d7cd2b62e (patch)
tree5c43182a8bf05c135f3b34fc1fee2ec4b52e10d1 /mk/check/check-files.mk
parente7399b4e6bb03f5b5ef37a2c6a5b6bb00951b7fe (diff)
downloadpkgsrc-ff39331baaa3cbbfade0d1885f08bb2d7cd2b62e.tar.gz
I'm fed up with having to waste time because PKG_DEVELOPER is "special" and
can't be disabled by setting it to "no" like the other variables. Besides, flavor/pkg/metadata.mk has been expecting for a long time that "no" is a valid value. Make PKG_DEVELOPER DWIM.
Diffstat (limited to 'mk/check/check-files.mk')
-rw-r--r--mk/check/check-files.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/check/check-files.mk b/mk/check/check-files.mk
index de8f95a202e..e02ba159571 100644
--- a/mk/check/check-files.mk
+++ b/mk/check/check-files.mk
@@ -1,4 +1,4 @@
-# $NetBSD: check-files.mk,v 1.26 2009/10/21 18:00:00 tnn Exp $
+# $NetBSD: check-files.mk,v 1.27 2010/08/24 19:08:29 bad 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
@@ -29,7 +29,7 @@ _VARGROUPS+= check-files
_USER_VARS.check-files= CHECK_FILES CHECK_FILES_STRICT
_PKG_VARS.check-files= CHECK_FILES_SKIP
-.if defined(PKG_DEVELOPER)
+.if defined(PKG_DEVELOPER) && ${PKG_DEVELOPER} != "no"
CHECK_FILES?= yes
.endif
CHECK_FILES?= no