diff options
author | abs <abs> | 1999-11-12 16:34:29 +0000 |
---|---|---|
committer | abs <abs> | 1999-11-12 16:34:29 +0000 |
commit | 11380ade4320aa85f7b69dcc3f1013c54f232bf3 (patch) | |
tree | dfcb05b893bb79305014dd54bbc8856228d5772d /security/ssh | |
parent | 93cf98f8ec86648dcab478a71edf2bb2a60c1702 (diff) | |
download | pkgsrc-11380ade4320aa85f7b69dcc3f1013c54f232bf3.tar.gz |
Enable alternate rsh path with SSH_RSHPATH
Patch from NoRM <norm@mono.org>
Diffstat (limited to 'security/ssh')
-rw-r--r-- | security/ssh/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index f72fcac8446..00dec83aae3 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.63 1999/10/19 08:49:49 agc Exp $ +# $NetBSD: Makefile,v 1.64 1999/11/12 16:34:29 abs Exp $ # FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp # @@ -48,6 +48,11 @@ CFLAGS+= -I${LOCALBASE}/include .if defined(USE_SECUREID) && ${USE_SECUREID} == YES CONFIGURE_ARGS+= --with-secureid .endif + +# If rsh is elsewhere to /usr/bin/rsh +.if defined(SSH_RSHPATH) +CONFIGURE_ARGS+= --with-rsh=${SSH_RSHPATH} +.endif # Don't use IDEA. IDEA can be freely used for non-commercial use. However, # commercial use may require a license in a number of countries |