diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-09-09 15:33:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-09-09 15:33:19 +0000 |
commit | a735cf56e7d9c4bc40eb151c490f994f44dae78d (patch) | |
tree | 0f916fb11a2f53d760af9b078cd2d893e7ef5b9b /usr.sbin/yppoll | |
parent | 3174858e978879a9200a6f2cd8bd68cdd8f08d5e (diff) |
Hide YP-specific xdr_* functions, and have the YP tools link -lrpcsvc
as needed.
ok miod guenther
Diffstat (limited to 'usr.sbin/yppoll')
-rw-r--r-- | usr.sbin/yppoll/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/yppoll/Makefile b/usr.sbin/yppoll/Makefile index 07e0912c4c5..313b949a9c1 100644 --- a/usr.sbin/yppoll/Makefile +++ b/usr.sbin/yppoll/Makefile @@ -1,6 +1,9 @@ -# $OpenBSD: Makefile,v 1.2 1997/09/21 11:44:37 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2015/09/09 15:33:18 deraadt Exp $ PROG= yppoll MAN= yppoll.8 +LDADD=-lrpcsvc +DPADD=${LIBRPCSVC} + .include <bsd.prog.mk> |