diff options
author | will <will@FreeBSD.org> | 2000-04-14 23:04:29 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-04-14 23:04:29 +0800 |
commit | d7b903fee8641ab0a6359dc2903b4424d7e766dc (patch) | |
tree | f778be049a97cdd0429e1a11d18f0662516d1d5b /security | |
parent | 55ac09c654b85cf5409980db79aebb121510a458 (diff) | |
download | freebsd-ports-gnome-d7b903fee8641ab0a6359dc2903b4424d7e766dc.tar.gz freebsd-ports-gnome-d7b903fee8641ab0a6359dc2903b4424d7e766dc.tar.zst freebsd-ports-gnome-d7b903fee8641ab0a6359dc2903b4424d7e766dc.zip |
Sorry to everyone, the commits previously broke installing for these ports.
Thanks to those who reported this.
PRs: 17927, 17937
Submitted by: Keith Davey <redlance@primenet.com>
maintainer (ssh2)
Diffstat (limited to 'security')
-rw-r--r-- | security/ssh/Makefile | 2 | ||||
-rw-r--r-- | security/ssh2/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 823b0c92b89c..e49d4ddb39df 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -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."; \ ${SED} -e 's+!!PREFIX!!+${PREFIX}+g' ${FILESDIR}/sshd.sh \ - > ${PREFIX}/etc/rc.d/sshd.sh \ + > ${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 c1aa002617f1..8d447d6c6f2c 100644 --- a/security/ssh2/Makefile +++ b/security/ssh2/Makefile @@ -102,7 +102,7 @@ post-install: @if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ ${ECHO} "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ ${SED} -e 's+!!PREFIX!!+${PREFIX}+' < ${FILESDIR}/sshd.sh \ - > ${PREFIX}/etc/rc.d/sshd.sh + > ${PREFIX}/etc/rc.d/sshd.sh; \ ${CHMOD} 751 ${PREFIX}/etc/rc.d/sshd.sh; \ fi |