svn commit: r274169 - head/usr.sbin/rpcbind

Baptiste Daroussin bapt at FreeBSD.org
Thu Nov 6 10:07:27 UTC 2014


Author: bapt
Date: Thu Nov  6 10:07:26 2014
New Revision: 274169
URL: https://svnweb.freebsd.org/changeset/base/274169

Log:
  rpcbind does not need to be linked to libutil

Modified:
  head/usr.sbin/rpcbind/Makefile

Modified: head/usr.sbin/rpcbind/Makefile
==============================================================================
--- head/usr.sbin/rpcbind/Makefile	Thu Nov  6 09:16:52 2014	(r274168)
+++ head/usr.sbin/rpcbind/Makefile	Thu Nov  6 10:07:26 2014	(r274169)
@@ -16,7 +16,7 @@ CFLAGS+= -DINET6
 
 WARNS?=	1
 
-DPADD=	${LIBWRAP} ${LIBUTIL}
-LDADD=	-lwrap -lutil
+DPADD=	${LIBWRAP}
+LDADD=	-lwrap
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list