diff options
author | jb <jb@FreeBSD.org> | 1998-08-31 00:42:21 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-31 00:42:21 +0000 |
commit | 7c39d735ef60c1a0050824f6964f41d1029f4820 (patch) | |
tree | 87e77cfcc1ec9dccb3e09c03429229f0dd2321ed /usr.bin/key | |
parent | fb46650fbf358b5601b0015219e81d267cbca90a (diff) | |
download | FreeBSD-src-7c39d735ef60c1a0050824f6964f41d1029f4820.zip FreeBSD-src-7c39d735ef60c1a0050824f6964f41d1029f4820.tar.gz |
The elf build wants to link against libcrypt.
Diffstat (limited to 'usr.bin/key')
-rw-r--r-- | usr.bin/key/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/key/Makefile b/usr.bin/key/Makefile index c150e63..d6f3c3e 100644 --- a/usr.bin/key/Makefile +++ b/usr.bin/key/Makefile @@ -7,7 +7,7 @@ MAN1= key.1 CFLAGS+= -D_SKEY_INTERNAL -DPADD= ${LIBSKEY} ${LIBMD} -LDADD= -lskey -lmd +DPADD= ${LIBSKEY} ${LIBCRYPT} ${LIBMD} +LDADD= -lskey -lcrypt -lmd .include <bsd.prog.mk> |