diff options
author | peter <peter@FreeBSD.org> | 2000-02-25 05:16:44 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-02-25 05:16:44 +0000 |
commit | 08aeaabc772f4aa67ad2b03ef4691537fe580555 (patch) | |
tree | c204f077f37d982d91dbf26c423cd2be6ef9cf28 /etc/Makefile | |
parent | 6ed9854c48d942a383d971d5953ceaee312d00c3 (diff) | |
download | FreeBSD-src-08aeaabc772f4aa67ad2b03ef4691537fe580555.zip FreeBSD-src-08aeaabc772f4aa67ad2b03ef4691537fe580555.tar.gz |
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
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index 513bfb2..d3640e7 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 |