diff options
author | green <green@FreeBSD.org> | 2000-02-23 11:30:04 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 2000-02-23 11:30:04 +0000 |
commit | 33bf5eff312991967dc0c5f7d44a63c68919b2fb (patch) | |
tree | 79a9499f7299633aa9ac5d39acf3eda4dbe5a2fd /security/openssh/files | |
parent | 6268a4b2309b18662ba36154e64a03cc33f478e0 (diff) | |
download | FreeBSD-ports-33bf5eff312991967dc0c5f7d44a63c68919b2fb.zip FreeBSD-ports-33bf5eff312991967dc0c5f7d44a63c68919b2fb.tar.gz |
Change install -C usage to install -c usage, fixing the install for older
install(1)s.
Submitted by: Jim Archuleta <JimArchuleta@usa.net>
Diffstat (limited to 'security/openssh/files')
-rw-r--r-- | security/openssh/files/patch-aa | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/security/openssh/files/patch-aa b/security/openssh/files/patch-aa index ffb6562..34873db 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> |