aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2007-07-02 14:00:25 +0000
committerKen Smith <kensmith@FreeBSD.org>2007-07-02 14:00:25 +0000
commit0c0146f019ea4d8be2a98a826f5895fd46acb606 (patch)
tree02831439fb5c04f9916dee36e9de75598a0227bd /bin
parentb8709d23c571244f9adfa10e516bfe1be7341cb9 (diff)
downloadsrc-0c0146f019ea4d8be2a98a826f5895fd46acb606.tar.gz
src-0c0146f019ea4d8be2a98a826f5895fd46acb606.zip
Don't include encryption features of ed(1) when building for the
"rescue media" bundled with releases. Suggested by: ru Approved by: re (hrs)
Notes
Notes: svn path=/head/; revision=171154
Diffstat (limited to 'bin')
-rw-r--r--bin/ed/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/ed/Makefile b/bin/ed/Makefile
index 0679fe884321..e2deec6572bd 100644
--- a/bin/ed/Makefile
+++ b/bin/ed/Makefile
@@ -7,11 +7,13 @@ 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 !defined(RELEASE_CRUNCH)
.if ${MK_OPENSSL} != "no"
CFLAGS+=-DDES
WARNS?= 2
DPADD= ${LIBCRYPTO}
LDADD= -lcrypto
.endif
+.endif
.include <bsd.prog.mk>