diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1998-05-23 08:53:38 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1998-05-23 08:53:38 +0000 |
commit | ca174e882589881b7cd78b39a7b2dca930839032 (patch) | |
tree | 94eea0f6aa2c30df71f9136c2b197fff792ed447 /security | |
parent | Add library dependency on kdesupport (diff) |
Two "/usr/local" --> ${PREFIX}
Notes
Notes:
svn path=/head/; revision=11113
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 9432b2de8779..a0944bedf576 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.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 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 |