diff options
author | bapt <bapt@FreeBSD.org> | 2014-11-06 10:07:26 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-11-06 10:07:26 +0000 |
commit | 87a929d82df7625407ea12d9a07527a4c5276a67 (patch) | |
tree | 3d4c7d92539ecd1b760c06047088e6a9360a4233 /usr.sbin/rpcbind | |
parent | 7e57127b4607f638b116e0253fbba4e182a03d7b (diff) | |
download | FreeBSD-src-87a929d82df7625407ea12d9a07527a4c5276a67.zip FreeBSD-src-87a929d82df7625407ea12d9a07527a4c5276a67.tar.gz |
rpcbind does not need to be linked to libutil
Diffstat (limited to 'usr.sbin/rpcbind')
-rw-r--r-- | usr.sbin/rpcbind/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpcbind/Makefile b/usr.sbin/rpcbind/Makefile index 2780001..44a030e 100644 --- a/usr.sbin/rpcbind/Makefile +++ b/usr.sbin/rpcbind/Makefile @@ -16,7 +16,7 @@ CFLAGS+= -DINET6 WARNS?= 1 -DPADD= ${LIBWRAP} ${LIBUTIL} -LDADD= -lwrap -lutil +DPADD= ${LIBWRAP} +LDADD= -lwrap .include <bsd.prog.mk> |