diff options
author | dillo <dillo@pkgsrc.org> | 2005-05-31 10:01:36 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2005-05-31 10:01:36 +0000 |
commit | f81ae835adc78533f22ce227d12d3f56e6076f1a (patch) | |
tree | 54f5cc64fe8b06d4695748b3d5b9967e8c030117 /security/sudo | |
parent | 79084c0d28dd7c904bebb1b7d09f66fa505cfc47 (diff) | |
download | pkgsrc-f81ae835adc78533f22ce227d12d3f56e6076f1a.tar.gz |
Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's a
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also,
make use of PKG_OPTIONS_LEGACY_VARS.
Reviewed by wiz.
Diffstat (limited to 'security/sudo')
-rw-r--r-- | security/sudo/options.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/security/sudo/options.mk b/security/sudo/options.mk index 19a032573f5..cbaa30571bb 100644 --- a/security/sudo/options.mk +++ b/security/sudo/options.mk @@ -1,10 +1,11 @@ -# $NetBSD: options.mk,v 1.7 2005/01/14 05:15:40 jlam Exp $ +# $NetBSD: options.mk,v 1.8 2005/05/31 10:01:39 dillo Exp $ # PKG_OPTIONS_VAR= PKG_OPTIONS.sudo PKG_SUPPORTED_OPTIONS= PAM kerberos ldap skey + .if ${OPSYS} == "NetBSD" -PKG_DEFAULT_OPTIONS+= skey +PKG_SUGGESTED_OPTIONS= skey .endif .include "../../mk/bsd.options.mk" |