summaryrefslogtreecommitdiff
path: root/mk/check
diff options
context:
space:
mode:
authorrillig <rillig>2007-01-06 14:11:16 +0000
committerrillig <rillig>2007-01-06 14:11:16 +0000
commitc66d5f7cd1788b04dd3c060f369c75a13c69b3fd (patch)
tree2bedb4f41a73d15f3ff9005c356273a46771ab75 /mk/check
parent4f76df5d43a7eb2845458bb8854805b86e69af24 (diff)
downloadpkgsrc-c66d5f7cd1788b04dd3c060f369c75a13c69b3fd.tar.gz
Reformatted the help text to be more human-readable instead of
pkglint-readable.
Diffstat (limited to 'mk/check')
-rw-r--r--mk/check/check-perms.mk22
1 files changed, 15 insertions, 7 deletions
diff --git a/mk/check/check-perms.mk b/mk/check/check-perms.mk
index ea2766558a5..229dcbd4f15 100644
--- a/mk/check/check-perms.mk
+++ b/mk/check/check-perms.mk
@@ -1,23 +1,31 @@
-# $NetBSD: check-perms.mk,v 1.5 2006/11/17 01:05:47 rillig Exp $
+# $NetBSD: check-perms.mk,v 1.6 2007/01/06 14:11:16 rillig Exp $
#
# This file checks that after installation of a package, all files and
# directories of that package have sensible permissions set.
#
# User-settable variables:
#
-# CHECK_PERMS: YesNo (default: yes for PKG_DEVELOPER, no otherwise)
+# CHECK_PERMS
# Specifies whether the permissions check should be run at all.
#
+# Possible values: yes, no.
+#
+# Default value: yes for PKG_DEVELOPER, no otherwise.
+#
# Package-settable variables:
#
-# CHECK_PERMS_SKIP: List of PathMask (default: empty)
-# A list of patterns (like man/*) that should be excluded from the
-# check. Note that a * in a pattern also matches a slash in a
-# pathname.
+# CHECK_PERMS_SKIP
+# A list of shell patterns (like man/*) that should be excluded
+# from the check. Note that a * in a pattern also matches a slash
+# in a pathname.
#
-# CHECK_PERMS_AUTOFIX: YesNo
+# Default value: empty.
+#
+# CHECK_PERMS_AUTOFIX
# If set to yes, any unusual permissions are fixed automatically.
#
+# Possible values: yes, no.
+#
.if defined(PKG_DEVELOPER)
CHECK_PERMS?= yes