diff options
author | markm <markm@FreeBSD.org> | 2003-09-18 16:35:43 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2003-09-18 16:35:43 +0000 |
commit | b65c4ddd5897bf0d4675d5774ff11a10355673d6 (patch) | |
tree | 0866d65a53a66a9838528beb46c55c3c4064ec94 /etc/Makefile | |
parent | 58009593995dd42228a6ea27238de29c96ce832d (diff) | |
download | FreeBSD-src-b65c4ddd5897bf0d4675d5774ff11a10355673d6.zip FreeBSD-src-b65c4ddd5897bf0d4675d5774ff11a10355673d6.tar.gz |
Remove excess paranoia. There is no need to chech for the crypto/ dir
any more, and this check has been removed elsewhere.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index fb72fe4..8cc4d9e 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -20,7 +20,7 @@ BIN1= amd.map apmd.conf auth.conf \ ${.CURDIR}/../usr.bin/mail/misc/mail.rc \ ${.CURDIR}/../usr.bin/locate/locate/locate.rc -.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL) +.if !defined(NO_OPENSSL) .if !defined(NO_OPENSSH) SSH= ${.CURDIR}/../crypto/openssh/ssh_config \ ${.CURDIR}/../crypto/openssh/sshd_config \ @@ -82,7 +82,7 @@ distribution: .if !defined(NO_SENDMAIL) cd ${.CURDIR}/sendmail; ${MAKE} distribution .endif -.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL) +.if !defined(NO_OPENSSL) .if !defined(NO_OPENSSH) cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ ${SSH} ${DESTDIR}/etc/ssh |