diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-06 14:11:16 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-06 14:11:16 +0000 |
commit | c8d325b04d1da115179fdb9354005195728a9db9 (patch) | |
tree | 2bedb4f41a73d15f3ff9005c356273a46771ab75 /mk | |
parent | ac28c21f3d4232162a1cdaaf9272c913a726dec5 (diff) | |
download | pkgsrc-c8d325b04d1da115179fdb9354005195728a9db9.tar.gz |
Reformatted the help text to be more human-readable instead of
pkglint-readable.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/check/check-perms.mk | 22 |
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 |