forked from Lainports/freebsd-ports
- Features: Possible use of sftp/sftp-server with older FreeBSD releases. Use a newer version independently from the Base system. Easier to test and fix possible security bugs. - Bugs: build of pam_ssm.so isn't be supported any more Any file named "cookie" can be deleted by this and any older "sshd" with X11 Forwarding.
20 lines
657 B
Text
20 lines
657 B
Text
--- Makefile.orig Sun Feb 4 12:11:53 2001
|
|
+++ Makefile Sat May 26 16:03:54 2001
|
|
@@ -1,14 +1,15 @@
|
|
# $OpenBSD: Makefile,v 1.8 2001/02/04 11:11:53 djm Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
+.include "Makefile.inc"
|
|
|
|
SUBDIR= lib ssh sshd ssh-add ssh-keygen ssh-agent scp sftp-server \
|
|
ssh-keyscan sftp
|
|
|
|
distribution:
|
|
- install -C -o root -g wheel -m 0644 ${.CURDIR}/ssh_config \
|
|
+ install -c -o root -g wheel -m 0644 ${.CURDIR}/ssh_config \
|
|
${DESTDIR}/etc/ssh_config
|
|
- install -C -o root -g wheel -m 0644 ${.CURDIR}/sshd_config \
|
|
+ install -c -o root -g wheel -m 0644 ${.CURDIR}/sshd_config \
|
|
${DESTDIR}/etc/sshd_config
|
|
|
|
.include <bsd.subdir.mk>
|