summaryrefslogtreecommitdiffstats
path: root/pw/Makefile
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>1999-12-16 10:55:45 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>1999-12-16 10:55:45 +0000
commitdd0e46c70361d0533ebdb41fda505f2aae9010ac (patch)
treedbe65197a819b16058c1b8cfb9bc4e1dcb660590 /pw/Makefile
parentcddf503c16cff892c8376a78ac9e3a9145dd46e9 (diff)
downloadpw-darwin-dd0e46c70361d0533ebdb41fda505f2aae9010ac.tar.gz
pw-darwin-dd0e46c70361d0533ebdb41fda505f2aae9010ac.tar.zst
pw-darwin-dd0e46c70361d0533ebdb41fda505f2aae9010ac.zip
Add libmd (or move it after libcrypt). We don't want the linker to be
smart because it will definitely get it wrong. This popped up during cross-linking.
Diffstat (limited to 'pw/Makefile')
-rw-r--r--pw/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/pw/Makefile b/pw/Makefile
index e6c9fa3..02c2957 100644
--- a/pw/Makefile
+++ b/pw/Makefile
@@ -10,8 +10,8 @@ MAN8= pw.8
#RND= -DUSE_MD5RAND
CFLAGS+= -W -Wall $(CDB) $(RND)
-LDADD= -lcrypt
-DPADD= ${LIBCRYPT}
+LDADD= -lcrypt -lmd
+DPADD= ${LIBCRYPT} ${LIBMD}
BINMODE=0555