summaryrefslogtreecommitdiff
path: root/security/ssh
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1998-09-15 21:31:59 +0000
committerSatoshi Asami <asami@FreeBSD.org>1998-09-15 21:31:59 +0000
commit668e0f51f4cd6da8b873bbe85c2c632a7b33d849 (patch)
treea51511e38b929fa10d17436f1464819312ac60ed /security/ssh
parentUpgrade to 1.7. (diff)
Use ${PERL5} wherever appropriate. Largely untested; hope my eyeball
checks haven't missed anything. Submitted by: dima
Notes
Notes: svn path=/head/; revision=13159
Diffstat (limited to 'security/ssh')
-rw-r--r--security/ssh/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile
index d13628771ddb..9ea8172591cb 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.61 1998/08/17 12:12:34 vanilla Exp $
+# $Id: Makefile,v 1.62 1998/08/19 19:51:10 hoek Exp $
#
# Maximal ssh package requires YES values for
# USE_PERL, USE_TCPWRAP
@@ -134,10 +134,9 @@ post-install:
# Following stuff must be after <bsd.port.mk> to expand exists() properly
.if defined(USE_PERL) && ${USE_PERL} == YES || \
- exists(${PREFIX}/bin/perl${PERL_VERSION}) && \
- (!defined(USE_PERL) || ${USE_PERL} != NO)
+ exists(${PERL5}) && (!defined(USE_PERL) || ${USE_PERL} != NO)
BUILD_DEPENDS+= perl${PERL_VERSION}:${PORTSDIR}/lang/perl5
-CONFIGURE_ENV+= PERL=${PREFIX}/bin/perl${PERL_VERSION}
+CONFIGURE_ENV+= PERL=${PERL5}
.else
CONFIGURE_ENV+= PERL=/replace_it_with_PERL_path
.endif