diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-27 01:01:08 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-27 01:01:08 +0000 |
commit | f07f504808239f4dd6005f79bb145e49b4947c11 (patch) | |
tree | 7811629449e2414bae88ea387269ba55abd90884 /security/ssh | |
parent | a58129d3de9c98ef3845e22d350633da5e5e4a75 (diff) | |
download | ports-f07f504808239f4dd6005f79bb145e49b4947c11.tar.gz ports-f07f504808239f4dd6005f79bb145e49b4947c11.zip |
KATO mega patch
- ECHO -> ECHO_MSG
For some ports:
- pre-fetch -> pre-everything
- ECHO -> ECHO_CMD
PR: ports/56820-56858
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Notes
Notes:
svn path=/head/; revision=89492
Diffstat (limited to 'security/ssh')
-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 4dd71f5405d6..7d2e70d21139 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -89,12 +89,12 @@ pre-patch: post-install: @if [ ! -f ${PREFIX}/etc/ssh_host_key ]; then \ - ${ECHO} "Generating a secret host key..."; \ + ${ECHO_MSG} "Generating a secret host key..."; \ ${PREFIX}/bin/ssh-keygen -f ${PREFIX}/etc/ssh_host_key -N ""; \ fi; \ if [ "`grep ssh /etc/inetd.conf|grep -v ^#ssh`" = "" ]; then \ if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ + ${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ ${SED} -e 's+!!PREFIX!!+${PREFIX}+g' ${FILESDIR}/sshd.sh \ > ${PREFIX}/etc/rc.d/sshd.sh; \ ${CHMOD} 751 ${PREFIX}/etc/rc.d/sshd.sh; \ |