diff options
author | tron <tron> | 1998-06-19 17:16:32 +0000 |
---|---|---|
committer | tron <tron> | 1998-06-19 17:16:32 +0000 |
commit | 9e5799f67defaa01f1d67bebf2fb0f8bcbe5091b (patch) | |
tree | b70f7c7cfa1ae74aab5bb97dc7ac37faa11b55fc /security | |
parent | 6383a5d7213c5b9d1b31b93c622b45ec1cb43e0d (diff) | |
download | pkgsrc-9e5799f67defaa01f1d67bebf2fb0f8bcbe5091b.tar.gz |
On request by mrg build "ssh" with "--disable-suid-ssh" by default. This
can be overridden by setting "SSH_SUID" to "YES".
Diffstat (limited to 'security')
-rw-r--r-- | security/ssh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index f11da9d7e95..cacf661c66e 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 1998/06/15 10:25:24 tron Exp $ +# $NetBSD: Makefile,v 1.27 1998/06/19 17:17:04 tron Exp $ # FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp # @@ -66,7 +66,7 @@ DEPENDS+= socks5-1.0.2:../../net/socks5 .endif # Don't install "ssh" setuid -.if defined(SSH_NO_SUID) && ${SSH_NO_SUID} == YES +.if !defined(SSH_SUID) || ${SSH_SUID} != YES CONFIGURE_ARGS+= --disable-suid-ssh .endif |