aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/lock
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-12-18 13:55:17 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-12-18 13:55:17 +0000
commit6e2578e4c48ce888afcffef16c6e24f46aa0011b (patch)
treea6dad01e00eec9389e642841501a8e78581deacd /usr.bin/lock
parent0cdff8ae00fa88985b2935fd0b239330ec353722 (diff)
downloadsrc-6e2578e4c48ce888afcffef16c6e24f46aa0011b.tar.gz
src-6e2578e4c48ce888afcffef16c6e24f46aa0011b.zip
Revert the libcrypt/libmd stuff back to how it was. This should not have
happened as it was working around problems elsewhere (ie: binutils/ld not doing the right thing according to the ELF design). libcrypt has been adjusted to not need the runtime -lmd. It's still not quite right (ld is supposed to work damnit) but at least it doesn't impact all the users of libcrypt in Marcel's cross-build model.
Notes
Notes: svn path=/head/; revision=54782
Diffstat (limited to 'usr.bin/lock')
-rw-r--r--usr.bin/lock/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/lock/Makefile b/usr.bin/lock/Makefile
index 42dbdfc176ec..84c8fd1f8c10 100644
--- a/usr.bin/lock/Makefile
+++ b/usr.bin/lock/Makefile
@@ -3,7 +3,7 @@
PROG= lock
BINMODE=4555
-DPADD= ${LIBCRYPT} ${LIBMD}
-LDADD= -lcrypt -lmd
+DPADD= ${LIBCRYPT}
+LDADD= -lcrypt
.include <bsd.prog.mk>