From f021cab12ec2084b5522a9822d3ae23392788ad1 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Fri, 25 Feb 2000 05:16:44 +0000 Subject: [PATCH] Fix references to crypto code to check that it exists first. Otherwise it breaks mergemaster (and probably other things). Submitted by: Munehiro Matsuda Approved by: jkh --- etc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/Makefile b/etc/Makefile index 513bfb22a423..d3640e755ca7 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -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