diff options
author | ache <ache@FreeBSD.org> | 1996-03-21 22:44:48 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-03-21 22:44:48 +0800 |
commit | 5759e913d7519f23a35f4f8fcd217a4887a590ba (patch) | |
tree | c317f45aa1143a8e6fe1fb14912f93a3a77907eb /security | |
parent | 5bcbad207f236907a2b0e6b651a04536f75426a3 (diff) | |
download | freebsd-ports-gnome-5759e913d7519f23a35f4f8fcd217a4887a590ba.tar.gz freebsd-ports-gnome-5759e913d7519f23a35f4f8fcd217a4887a590ba.tar.zst freebsd-ports-gnome-5759e913d7519f23a35f4f8fcd217a4887a590ba.zip |
Check USE_WISH for YES value as other parts of Makefile does
Diffstat (limited to 'security')
-rw-r--r-- | security/ssh/Makefile | 4 | ||||
-rw-r--r-- | security/ssh2/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index ce09729253d4..6fc50ef4ae62 100644 --- a/security/ssh/Makefile +++ b/security/ssh/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 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 |