From 8027fe397a04139a40a05e577a8594acb129dea4 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Sun, 8 Jun 2003 08:24:07 +0000 Subject: [PATCH] Fix for the NO_OPENSSL case. Reported by: Marius Strobl --- bin/ed/Makefile | 2 +- secure/usr.bin/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/ed/Makefile b/bin/ed/Makefile index e721cfa9059..5409cc0c5a1 100644 --- a/bin/ed/Makefile +++ b/bin/ed/Makefile @@ -5,7 +5,7 @@ SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c LINKS= ${BINDIR}/ed ${BINDIR}/red MLINKS= ed.1 red.1 -.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) +.if exists(${.CURDIR}/../../crypto) && !defined(NO_OPENSSL) DISTRIBUTION=crypto CFLAGS+=-DDES DPADD= ${LIBCRYPTO} diff --git a/secure/usr.bin/Makefile b/secure/usr.bin/Makefile index 791c8c57e1c..77674ab5a60 100644 --- a/secure/usr.bin/Makefile +++ b/secure/usr.bin/Makefile @@ -1,8 +1,8 @@ # $FreeBSD$ -SUBDIR= bdes +SUBDIR= .if !defined(NO_OPENSSL) -SUBDIR+=openssl +SUBDIR+=bdes openssl .if !defined(NO_OPENSSH) SUBDIR+=scp sftp ssh ssh-add ssh-agent ssh-keygen ssh-keyscan .endif