diff options
author | ru <ru@FreeBSD.org> | 2003-06-29 10:03:35 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-06-29 10:03:35 +0000 |
commit | 46e7e66ef3c1770f906bfb62fd6ae4d1519e177f (patch) | |
tree | 643db55296a161450396e26e3212c8ce7708cbb2 /bin/ed/Makefile | |
parent | 4418bf544ed77d899f455f990473f305880e8c0c (diff) | |
download | FreeBSD-src-46e7e66ef3c1770f906bfb62fd6ae4d1519e177f.zip FreeBSD-src-46e7e66ef3c1770f906bfb62fd6ae4d1519e177f.tar.gz |
Unbreak NOCRYPT buildworld.
Reviewed by: markm
Diffstat (limited to 'bin/ed/Makefile')
-rw-r--r-- | bin/ed/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ed/Makefile b/bin/ed/Makefile index dd05eac..de1d285 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}/../../crypto) && !defined(NO_OPENSSL) +.if exists(${.CURDIR}/../../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) DISTRIBUTION=crypto CFLAGS+=-DDES WARNS= 2 |