Fix references to crypto code to check that it exists first. Otherwise

it breaks mergemaster (and probably other things).

Submitted by:	Munehiro Matsuda <haro@tk.kubota.co.jp>
Approved by:	jkh
This commit is contained in:
Peter Wemm 2000-02-25 05:16:44 +00:00
parent ce0d1c79c3
commit f021cab12e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57469

View File

@ -20,7 +20,7 @@ BIN1= aliases amd.map apmd.conf auth.conf \
${.CURDIR}/../usr.bin/mail/misc/mail.rc \
${.CURDIR}/../usr.bin/locate/locate/locate.rc
.if !defined(NO_OPENSSH)
.if exists(${.CURDIR}../crypto) && !defined(NO_OPENSSH)
BIN1+= ${.CURDIR}/../crypto/openssh/ssh_config \
${.CURDIR}/../crypto/openssh/sshd_config
.endif