diff options
author | 1999-09-26 21:52:50 +0000 | |
---|---|---|
committer | 1999-09-26 21:52:50 +0000 | |
commit | 4bc35eeeccf76a22c16fc9cce9d1939d4289724d (patch) | |
tree | 93c347e7a5b9538f14903e99afdb6e8be719414b | |
parent | build ssh components using our build model (diff) | |
download | wireguard-openbsd-4bc35eeeccf76a22c16fc9cce9d1939d4289724d.tar.xz wireguard-openbsd-4bc35eeeccf76a22c16fc9cce9d1939d4289724d.zip |
proper groups for install
-rw-r--r-- | usr.bin/ssh/scp/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-add/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-agent/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-keygen/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/ssh/ssh/Makefile | 3 | ||||
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 1 |
6 files changed, 1 insertions, 7 deletions
diff --git a/usr.bin/ssh/scp/Makefile b/usr.bin/ssh/scp/Makefile index b1b6ef02983..5013d2b99cf 100644 --- a/usr.bin/ssh/scp/Makefile +++ b/usr.bin/ssh/scp/Makefile @@ -2,7 +2,6 @@ PROG= scp BINOWN= root -BINGRP= root BINMODE=555 BINDIR= /usr/bin MAN= scp.1 diff --git a/usr.bin/ssh/ssh-add/Makefile b/usr.bin/ssh/ssh-add/Makefile index 271b0ad3c2c..ec509576ac5 100644 --- a/usr.bin/ssh/ssh-add/Makefile +++ b/usr.bin/ssh/ssh-add/Makefile @@ -2,7 +2,6 @@ PROG= ssh-add BINOWN= root -BINGRP= root BINMODE=555 BINDIR= /usr/bin LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz diff --git a/usr.bin/ssh/ssh-agent/Makefile b/usr.bin/ssh/ssh-agent/Makefile index 0f36ed84774..0abaa966429 100644 --- a/usr.bin/ssh/ssh-agent/Makefile +++ b/usr.bin/ssh/ssh-agent/Makefile @@ -2,7 +2,6 @@ PROG= ssh-keygen BINOWN= root -BINGRP= root BINMODE=555 BINDIR= /usr/bin LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz diff --git a/usr.bin/ssh/ssh-keygen/Makefile b/usr.bin/ssh/ssh-keygen/Makefile index 1c2db5b8d56..9373a670545 100644 --- a/usr.bin/ssh/ssh-keygen/Makefile +++ b/usr.bin/ssh/ssh-keygen/Makefile @@ -2,7 +2,6 @@ PROG= ssh-keygen BINOWN= root -BINGRP= root BINMODE=555 BINDIR= /usr/bin LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz diff --git a/usr.bin/ssh/ssh/Makefile b/usr.bin/ssh/ssh/Makefile index 92f0c197377..b2ac2af8c05 100644 --- a/usr.bin/ssh/ssh/Makefile +++ b/usr.bin/ssh/ssh/Makefile @@ -2,7 +2,6 @@ PROG= ssh BINOWN= root -BINGRP= root BINMODE=4555 BINDIR= /usr/bin LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz @@ -42,7 +41,7 @@ generate-host-key: # (otherwise it can only log in as the user it runs as, and must be # bound to a non-privileged port). Also, password authentication may # not be available if non-root and using shadow passwords. -install: $(PROGRAMS) make-dirs generate-host-key +fuck-install: $(PROGRAMS) make-dirs generate-host-key $(INSTALL_PROGRAM) -o root -m 0755 ssh $(install_prefix)$(bindir)/ssh -if test "`echo ssh | sed '$(transform)'`" '!=' ssh; then \ rm -f $(install_prefix)$(bindir)/`echo ssh | sed '$(transform)'`; \ diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index ec784594295..4ca6870c930 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -2,7 +2,6 @@ PROG= sshd BINOWN= root -BINGRP= root BINMODE=555 BINDIR= /usr/sbin LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz |