diff options
author | wollman <wollman@FreeBSD.org> | 2002-03-08 17:45:47 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2002-03-08 17:45:47 +0000 |
commit | d58f93607fcdf8a8040f488325f2066408b3a666 (patch) | |
tree | 6d69cfe62ea39fc416207962a379c8c6257ccbcd /security | |
parent | d665929c8ad42debe37b52ea2886abb7c153824c (diff) | |
download | FreeBSD-ports-d58f93607fcdf8a8040f488325f2066408b3a666.zip FreeBSD-ports-d58f93607fcdf8a8040f488325f2066408b3a666.tar.gz |
Fix thinko and make it possible to disable Kerberos support on the
make command line even if KRB5_HOME is set in make.conf.
Diffstat (limited to 'security')
-rw-r--r-- | security/hpn-ssh/Makefile | 2 | ||||
-rw-r--r-- | security/openssh-portable/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/hpn-ssh/Makefile b/security/hpn-ssh/Makefile index fcf6f5e..173638f 100644 --- a/security/hpn-ssh/Makefile +++ b/security/hpn-ssh/Makefile @@ -48,7 +48,7 @@ CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ EXTRA_PATCHES+= ${FILESDIR}/batch.patch .endif -.if defined(KRB5_HOME) && exists(KRB5_HOME) +.if defined(KRB5_HOME) && exists(${KRB5_HOME}) BROKEN= Need updated patches from Simon Wilkinson MASTER_SITES+= ${PATCH_SITES} DISTFILES= ${EXTRACT_ONLY} ${PORTNAME}-${PORTVERSION}-gssapi.patch diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile index fcf6f5e..173638f 100644 --- a/security/openssh-portable/Makefile +++ b/security/openssh-portable/Makefile @@ -48,7 +48,7 @@ CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ EXTRA_PATCHES+= ${FILESDIR}/batch.patch .endif -.if defined(KRB5_HOME) && exists(KRB5_HOME) +.if defined(KRB5_HOME) && exists(${KRB5_HOME}) BROKEN= Need updated patches from Simon Wilkinson MASTER_SITES+= ${PATCH_SITES} DISTFILES= ${EXTRACT_ONLY} ${PORTNAME}-${PORTVERSION}-gssapi.patch |