diff options
author | obrien <obrien@FreeBSD.org> | 1998-05-23 16:53:38 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-05-23 16:53:38 +0800 |
commit | d2387db95336bf92bf4ac0743a13a0ab8c614c9e (patch) | |
tree | 0e50df287a6de3dd1fe8c62ea93e85819ab7c03c /security/ssh2 | |
parent | 6f676465a5c80a5759034818cb214b1b69f28dde (diff) | |
download | freebsd-ports-gnome-d2387db95336bf92bf4ac0743a13a0ab8c614c9e.tar.gz freebsd-ports-gnome-d2387db95336bf92bf4ac0743a13a0ab8c614c9e.tar.zst freebsd-ports-gnome-d2387db95336bf92bf4ac0743a13a0ab8c614c9e.zip |
Two "/usr/local" --> ${PREFIX}
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 9432b2de8779..a0944bedf576 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.52 1998/03/10 13:58:16 jkh Exp $ +# $Id: Makefile,v 1.53 1998/05/22 06:05:43 mph Exp $ # # Maximal ssh package requires YES values for # USE_PERL, USE_TCPWRAP @@ -109,7 +109,7 @@ post-install: @if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ echo "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/sshd.sh; \ - echo "[ -x /usr/local/sbin/sshd ] && /usr/local/sbin/sshd && echo -n ' sshd'" >> ${PREFIX}/etc/rc.d/sshd.sh; \ + echo "[ -x ${PREFIX}/sbin/sshd ] && ${PREFIX}/sbin/sshd && echo -n ' sshd'" >> ${PREFIX}/etc/rc.d/sshd.sh; \ chmod 751 ${PREFIX}/etc/rc.d/sshd.sh; \ fi |