summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1995-10-22 20:14:13 +0000
committerache <ache@FreeBSD.org>1995-10-22 20:14:13 +0000
commitcefb9133fd9ebfa6eb31fc35cbc4a39bb56b815a (patch)
treea070f3e7382676e435b27229a0cdcd831fecda94 /bin
parenta92bdda05ddd02eea3a1e606ad7b917674750837 (diff)
downloadFreeBSD-src-cefb9133fd9ebfa6eb31fc35cbc4a39bb56b815a.zip
FreeBSD-src-cefb9133fd9ebfa6eb31fc35cbc4a39bb56b815a.tar.gz
Wrong library was picked by ed
Diffstat (limited to 'bin')
-rw-r--r--bin/Makefile.inc6
-rw-r--r--bin/ed/Makefile6
2 files changed, 6 insertions, 6 deletions
diff --git a/bin/Makefile.inc b/bin/Makefile.inc
index 00b7d83..5e19e78 100644
--- a/bin/Makefile.inc
+++ b/bin/Makefile.inc
@@ -5,10 +5,10 @@ NOSHARED?= YES
.if exists (${.CURDIR}/../../secure)
-.if exists(${.CURDIR}/../../secure/lib/libcrypt/obj)
-CRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt/obj
+.if exists(${.CURDIR}/../../secure/lib/libcipher/obj)
+CIPHEROBJDIR= ${.CURDIR}/../../secure/lib/libcipher/obj
.else
-CRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt
+CIPHEROBJDIR= ${.CURDIR}/../../secure/lib/libcipher
.endif
.endif
diff --git a/bin/ed/Makefile b/bin/ed/Makefile
index 50db9ef..30816a8 100644
--- a/bin/ed/Makefile
+++ b/bin/ed/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.11 1995/10/01 14:17:29 markm Exp $
+# $Id: Makefile,v 1.12 1995/10/03 15:44:50 markm Exp $
PROG= ed
SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
@@ -8,8 +8,8 @@ MLINKS= ed.1 red.1
.if exists(../../secure) && !defined(NOCRYPT) && !defined(NOSECURE)
DISTRIBUTION=des
CFLAGS+=-DDES
-LDADD+= -L${CRYPTOBJDIR} -ldescrypt
-DPADD+= ${CRYPTOBJDIR}/libdescrypt.a
+LDADD+= -L${CIPHEROBJDIR} -lcipher
+DPADD+= ${CIPHEROBJDIR}/libcipher.a
.endif
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud