summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-11-18 23:02:00 +0000
committerjlam <jlam@pkgsrc.org>2004-11-18 23:02:00 +0000
commitf10438b939ea40ee13d0c064ba401af1fcac3ada (patch)
treea32bc06d97cae879388cf051e927beda49265aa9 /security
parentbed54861a9051fa959324ffc8fab3fa165098b9f (diff)
downloadpkgsrc-f10438b939ea40ee13d0c064ba401af1fcac3ada.tar.gz
The universal option to enable PAM support is "PAM" not "pam". We strive
to use common option names were possible, so change these instances of "pam" to "PAM" to match existing usage.
Diffstat (limited to 'security')
-rw-r--r--security/sudo/options.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/sudo/options.mk b/security/sudo/options.mk
index 7a4d1e31a0d..ad933d3814d 100644
--- a/security/sudo/options.mk
+++ b/security/sudo/options.mk
@@ -1,8 +1,8 @@
-# $NetBSD: options.mk,v 1.1 2004/08/23 21:15:17 xtraeme Exp $
+# $NetBSD: options.mk,v 1.2 2004/11/18 23:02:01 jlam Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.sudo
-PKG_SUPPORTED_OPTIONS= kerberos ldap pam
+PKG_SUPPORTED_OPTIONS= kerberos ldap PAM
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mkerberos)
@@ -18,7 +18,7 @@ CONFIGURE_ARGS+= --without-kerb5
CONFIGURE_ARGS+= --with-ldap=${BUILDLINK_PREFIX.openldap}
.endif
-.if !empty(PKG_OPTIONS:Mpam)
+.if !empty(PKG_OPTIONS:MPAM)
. include "../../security/PAM/buildlink3.mk"
CONFIGURE_ARGS+= --with-pam
.endif