diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1996-03-21 14:44:48 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1996-03-21 14:44:48 +0000 |
commit | 41ed4b9a53ad60c6a67a07c5359bfa520b441330 (patch) | |
tree | 4791125e653179dd5c6fe16d29d867738d172151 /security/ssh2 | |
parent | Use wish only if USE_WISH defined. (diff) |
Check USE_WISH for YES value as other parts of Makefile does
Notes
Notes:
svn path=/head/; revision=2869
Diffstat (limited to 'security/ssh2')
-rw-r--r-- | security/ssh2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/ssh2/Makefile b/security/ssh2/Makefile index ce09729253d4..6fc50ef4ae62 100644 --- a/security/ssh2/Makefile +++ b/security/ssh2/Makefile @@ -3,7 +3,7 @@ # Date created: 30 Jul 1995 # Whom: torstenb@FreeBSD.ORG # -# $Id: Makefile,v 1.16 1996/03/16 17:23:01 markm Exp $ +# $Id: Makefile,v 1.17 1996/03/21 14:41:19 ache Exp $ # DISTNAME= ssh-1.2.13 @@ -87,7 +87,7 @@ post-install: # Following stuff must be after <bsd.port.mk> to expand exists() properly -.if defined(USE_WISH) +.if defined(USE_WISH) && ${USE_WISH} == YES .if exists(${PREFIX}/bin/wish4.0) BUILD_DEPENDS+= wish4.0:${PORTSDIR}/x11/tk4 CONFIGURE_ENV+= WISH=${PREFIX}/bin/wish4.0 |