diff options
author | reed <reed@pkgsrc.org> | 2004-08-06 03:14:22 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2004-08-06 03:14:22 +0000 |
commit | f1d0bf8e921c35e55415cfd61d8d62a00f424889 (patch) | |
tree | 3d5a3597b2e5335e1ab81e1cdf919ae2609c8385 /security/PAM/builtin.mk | |
parent | 207644e8679dbb5bcafd0ff2ab3619da4ee81407 (diff) | |
download | pkgsrc-f1d0bf8e921c35e55415cfd61d8d62a00f424889.tar.gz |
In the rare case when LOCALBASE is /usr, don't let this think
that /usr/include/security/pam_appl.h means that PAM is builtin.
(This is so a dependency can be registered correctly.)
Diffstat (limited to 'security/PAM/builtin.mk')
-rw-r--r-- | security/PAM/builtin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/PAM/builtin.mk b/security/PAM/builtin.mk index 43cbb672fce..91c7ce1f3ce 100644 --- a/security/PAM/builtin.mk +++ b/security/PAM/builtin.mk @@ -1,8 +1,8 @@ -# $NetBSD: builtin.mk,v 1.2 2004/03/29 05:43:35 jlam Exp $ +# $NetBSD: builtin.mk,v 1.3 2004/08/06 03:14:22 reed Exp $ .if !defined(IS_BUILTIN.pam) IS_BUILTIN.pam= no -. if exists(/usr/include/security/pam_appl.h) +. if exists(/usr/include/security/pam_appl.h) && (${LOCALBASE} != "/usr") IS_BUILTIN.pam= yes . endif .endif # IS_BUILTIN.pam |