diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2002-12-27 05:47:14 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2002-12-27 05:47:14 +0000 |
commit | fd410f2020bd556c3587d3618f295800cee940b9 (patch) | |
tree | e6d1b8dcfa5cdf6294daeab99aeadadb41900ee3 /mail | |
parent | ac9f0171692766f3844c4c9ead78d71bb3ad25f0 (diff) | |
download | pkgsrc-fd410f2020bd556c3587d3618f295800cee940b9.tar.gz |
Guard an expansion of USE_KERBEROS by `.if defined() && ...' just in
case. Pointed out by Ken Nakajima.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/imap-uw/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index 317af3eea50..9d80a56ac01 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2002/12/14 04:34:48 hubertf Exp $ +# $NetBSD: Makefile,v 1.51 2002/12/27 05:47:14 uebayasi Exp $ DISTNAME= imap-2002a.DEV.SNAP-0212051126 PKGNAME= imap-uw-2002.1rc1 @@ -29,7 +29,7 @@ ALL_TARGET= lrh ALL_TARGET= osx .else ALL_TARGET= neb -.if (${USE_KERBEROS} != "no") +.if defined(USE_KERBEROS) && (${USE_KERBEROS} != "no") PKG_USE_KERBEROS= #defined ALL_TARGET+= EXTRAAUTHENTICATORS="gss" .endif |