diff options
author | markm <markm@FreeBSD.org> | 1995-10-03 15:44:50 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1995-10-03 15:44:50 +0000 |
commit | 6620dab5e12bef027febd61c323aedb2f252e1e6 (patch) | |
tree | ab37c01fcbcb3bb2ff971543b0448b8e7d356063 /bin/ed/Makefile | |
parent | 86a1f0bb7ea4e1d14d383b76b024eb58737a218d (diff) | |
download | FreeBSD-src-6620dab5e12bef027febd61c323aedb2f252e1e6.zip FreeBSD-src-6620dab5e12bef027febd61c323aedb2f252e1e6.tar.gz |
Correctly build the secure ed(1) only if secure/ exists.
Pointed out by: bde
Diffstat (limited to 'bin/ed/Makefile')
-rw-r--r-- | bin/ed/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ed/Makefile b/bin/ed/Makefile index ffe5278..50db9ef 100644 --- a/bin/ed/Makefile +++ b/bin/ed/Makefile @@ -1,11 +1,11 @@ -# $Id: Makefile,v 1.10 1994/12/18 15:15:10 jkh Exp $ +# $Id: Makefile,v 1.11 1995/10/01 14:17:29 markm Exp $ PROG= ed 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(NOCRYPT) && !defined(NOSECURE) +.if exists(../../secure) && !defined(NOCRYPT) && !defined(NOSECURE) DISTRIBUTION=des CFLAGS+=-DDES LDADD+= -L${CRYPTOBJDIR} -ldescrypt |