diff options
author | peter <peter@FreeBSD.org> | 1999-12-18 13:55:17 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-12-18 13:55:17 +0000 |
commit | d44e2d4226bf9eb5daa8609797680819058bc819 (patch) | |
tree | 3c5d814d56c288c5276b1f6789a14ff54ca8b34c /usr.bin/rsh | |
parent | 2c47e5f1e90cf19509244c9de6d167bf7642601a (diff) | |
download | FreeBSD-src-d44e2d4226bf9eb5daa8609797680819058bc819.zip FreeBSD-src-d44e2d4226bf9eb5daa8609797680819058bc819.tar.gz |
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 'usr.bin/rsh')
-rw-r--r-- | usr.bin/rsh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rsh/Makefile b/usr.bin/rsh/Makefile index 4de4bdf..ede91df 100644 --- a/usr.bin/rsh/Makefile +++ b/usr.bin/rsh/Makefile @@ -14,8 +14,8 @@ CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \ -I${.CURDIR}/../../crypto/kerberosIV/include \ -I${.CURDIR}/../../crypto/kerberosIV/lib/roken \ -I${.CURDIR}/../../crypto/kerberosIV/appl/bsd -DPADD= ${LIBUTIL} ${LIBKRB} ${LIBDES} ${LIBCRYPT} ${LIBCOM_ERR} ${LIBMD} -LDADD= -lutil -lkrb -ldes -lcrypt -lcom_err -lmd +DPADD= ${LIBUTIL} ${LIBKRB} ${LIBDES} ${LIBCRYPT} ${LIBCOM_ERR} +LDADD= -lutil -lkrb -ldes -lcrypt -lcom_err DISTRIBUTION= krb4 .PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd .endif |