summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Yurchenko <grange@cvs.openbsd.org>2003-12-01 15:47:21 +0000
committerAlexander Yurchenko <grange@cvs.openbsd.org>2003-12-01 15:47:21 +0000
commit7d14dd698f97763901bae679285c5e2710e5d10b (patch)
treed372c8a8c8690b64caf688729e2124e749f294cb
parent3a166623bfb6e97f6308e8b32e6f9f1d24c0650b (diff)
Use ${INSTALL} instead of install; from art's amd64 tree.
ok markus@
-rw-r--r--usr.bin/ssh/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/Makefile b/usr.bin/ssh/Makefile
index 0b9c668b651..aa3c9be7154 100644
--- a/usr.bin/ssh/Makefile
+++ b/usr.bin/ssh/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.11 2002/05/23 19:24:30 markus Exp $
+# $OpenBSD: Makefile,v 1.12 2003/12/01 15:47:20 grange Exp $
.include <bsd.own.mk>
@@ -6,9 +6,9 @@ SUBDIR= lib ssh sshd ssh-add ssh-keygen ssh-agent scp sftp-server \
ssh-keysign ssh-keyscan sftp scard
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/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/ssh/sshd_config
.include <bsd.subdir.mk>