summaryrefslogtreecommitdiffstats
path: root/pw/Makefile
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
commit689e59177079bab25bc22ccf4c0e9a3954e8306b (patch)
treee648c21defb5ea47eeef4152541d4dc772b8fdab /pw/Makefile
parentdd0e46c70361d0533ebdb41fda505f2aae9010ac (diff)
downloadpw-darwin-689e59177079bab25bc22ccf4c0e9a3954e8306b.tar.gz
pw-darwin-689e59177079bab25bc22ccf4c0e9a3954e8306b.tar.zst
pw-darwin-689e59177079bab25bc22ccf4c0e9a3954e8306b.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.
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 02c2957..e6c9fa3 100644
--- a/pw/Makefile
+++ b/pw/Makefile
@@ -10,8 +10,8 @@ MAN8= pw.8
#RND= -DUSE_MD5RAND
CFLAGS+= -W -Wall $(CDB) $(RND)
-LDADD= -lcrypt -lmd
-DPADD= ${LIBCRYPT} ${LIBMD}
+LDADD= -lcrypt
+DPADD= ${LIBCRYPT}
BINMODE=0555