summaryrefslogtreecommitdiff
path: root/security/openssh
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>2000-02-23 11:30:04 +0000
committerBrian Feldman <green@FreeBSD.org>2000-02-23 11:30:04 +0000
commit81d4a6cdbd7725b75d804a5d0ebf9fea12576403 (patch)
tree5969d7a307aaf97b8d02ca7cc140b3cef2303b3d /security/openssh
parentAdd some extra mirror sites to the Makefile (diff)
Change install -C usage to install -c usage, fixing the install for older
install(1)s. Submitted by: Jim Archuleta <JimArchuleta@usa.net>
Notes
Notes: svn path=/head/; revision=26202
Diffstat (limited to 'security/openssh')
-rw-r--r--security/openssh/files/patch-aa15
1 files changed, 11 insertions, 4 deletions
diff --git a/security/openssh/files/patch-aa b/security/openssh/files/patch-aa
index ffb6562b3a19..34873db4f8d2 100644
--- a/security/openssh/files/patch-aa
+++ b/security/openssh/files/patch-aa
@@ -1,6 +1,6 @@
---- /usr/ports/distfiles/OpenSSH-1.2/src/usr.bin/ssh/Makefile Mon Oct 25 16:27:26 1999
-+++ Makefile Mon Nov 29 01:07:28 1999
-@@ -1,8 +1,12 @@
+--- Makefile.orig Wed Feb 23 06:18:58 2000
++++ Makefile Wed Feb 23 06:22:22 2000
+@@ -1,13 +1,17 @@
# $OpenBSD: Makefile,v 1.5 1999/10/25 20:27:26 markus Exp $
.include <bsd.own.mk>
@@ -12,4 +12,11 @@
+.endif
distribution:
- install -C -o root -g wheel -m 0644 ${.CURDIR}/ssh_config \
+- 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>