diff options
author | ru <ru@FreeBSD.org> | 2006-03-11 08:51:16 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2006-03-11 08:51:16 +0000 |
commit | 0f40461c39d928918b81dabc8c55c0ae94797697 (patch) | |
tree | 62c6e337f1d784abb03806ea7fec1568e7a3c21b /etc | |
parent | 4f370035b4a1830986d9dccf4e7b6d103503c629 (diff) | |
download | FreeBSD-src-0f40461c39d928918b81dabc8c55c0ae94797697.zip FreeBSD-src-0f40461c39d928918b81dabc8c55c0ae94797697.tar.gz |
Fix "make distribution" when just NO_CRYPT is defined.
PR: misc/94309
Submitted by: Matthias Lederhofer
MFC after: 3 days
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index 343e5e3..d1045f8 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -131,7 +131,7 @@ distribution: .if !defined(NO_SENDMAIL) cd ${.CURDIR}/sendmail; ${MAKE} distribution .endif -.if !defined(NO_OPENSSL) +.if !defined(NO_CRYPT) && !defined(NO_OPENSSL) .if !defined(NO_OPENSSH) cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ ${SSH} ${DESTDIR}/etc/ssh |