diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-03-26 00:36:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-03-26 00:36:01 +0000 |
commit | 082e875778c51eba9dd109113e8ffdfa89170f98 (patch) | |
tree | e32dcb4593f4992769e0a8d1d8c3ad80fa20e5c4 /usr.bin/passwd | |
parent | 1da51e29f50d8de8dafecad57f99e3344d90388a (diff) |
no libcrypt, fix DPADD
Diffstat (limited to 'usr.bin/passwd')
-rw-r--r-- | usr.bin/passwd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/passwd/Makefile b/usr.bin/passwd/Makefile index 06f02b88a24..5ee6cddcd11 100644 --- a/usr.bin/passwd/Makefile +++ b/usr.bin/passwd/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.12 1997/02/14 23:27:25 provos Exp $ +# $OpenBSD: Makefile,v 1.13 1997/03/26 00:35:32 deraadt Exp $ .include <bsd.own.mk> PROG= passwd SRCS= local_passwd.c yp_passwd.c passwd.c getpwent.c pwd_gensalt.c .PATH: ${.CURDIR}/../../lib/libc/gen -DPADD+= ${LIBRPCSVC} ${LIBCRYPT} ${LIBUTIL} +DPADD+= ${LIBRPCSVC} ${LIBUTIL} LDADD+= -lrpcsvc -lutil CFLAGS+= -I${.CURDIR} |