diff options
author | 1999-10-07 05:10:24 +0000 | |
---|---|---|
committer | 1999-10-07 05:10:24 +0000 | |
commit | ec5851cde9525d243694af3e328bf12d38c2f0ac (patch) | |
tree | 0d7fb289eb851f94a97b474e7bd5b04d9b736443 /usr.bin/ssh/ssh-agent | |
parent | if sshd startup fails due to rsa not being there, start up (diff) | |
download | wireguard-openbsd-ec5851cde9525d243694af3e328bf12d38c2f0ac.tar.xz wireguard-openbsd-ec5851cde9525d243694af3e328bf12d38c2f0ac.zip |
on static machines, install these as mode 0
Diffstat (limited to 'usr.bin/ssh/ssh-agent')
-rw-r--r-- | usr.bin/ssh/ssh-agent/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-agent/Makefile b/usr.bin/ssh/ssh-agent/Makefile index 91f56f0a72e..0c9f10b0170 100644 --- a/usr.bin/ssh/ssh-agent/Makefile +++ b/usr.bin/ssh/ssh-agent/Makefile @@ -2,7 +2,14 @@ PROG= ssh-agent BINOWN= root -BINMODE=555 + +.if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "powerpc" || \ + ${MACHINE_ARCH} == "hppa") +BINMODE=0000 +.else +BINMODE?=555 +.endif + BINDIR= /usr/bin LDADD= -lcrypto -lutil -lz DPADD= ${LIBCRYPTO} ${LIBDES} ${LIBUTIL} ${LIBZ} |