svn commit: r235642 - in head/usr.bin: fstat procstat

Marcel Moolenaar marcel at FreeBSD.org
Sat May 19 05:07:04 UTC 2012


Author: marcel
Date: Sat May 19 05:07:03 2012
New Revision: 235642
URL: http://svn.freebsd.org/changeset/base/235642

Log:
  Bring DPADD in sync with LDADD.

Modified:
  head/usr.bin/fstat/Makefile
  head/usr.bin/procstat/Makefile

Modified: head/usr.bin/fstat/Makefile
==============================================================================
--- head/usr.bin/fstat/Makefile	Sat May 19 04:57:37 2012	(r235641)
+++ head/usr.bin/fstat/Makefile	Sat May 19 05:07:03 2012	(r235642)
@@ -4,7 +4,7 @@
 PROG=	fstat
 SRCS=	fstat.c fuser.c main.c
 LINKS=	${BINDIR}/fstat ${BINDIR}/fuser
-DPADD=	${LIBKVM}
+DPADD=	${LIBKVM} ${LIBUTIL} ${LIBPROCSTAT}
 LDADD=	-lkvm -lutil -lprocstat
 
 MAN1=	fuser.1 fstat.1

Modified: head/usr.bin/procstat/Makefile
==============================================================================
--- head/usr.bin/procstat/Makefile	Sat May 19 04:57:37 2012	(r235641)
+++ head/usr.bin/procstat/Makefile	Sat May 19 05:07:03 2012	(r235642)
@@ -16,6 +16,6 @@ SRCS=	procstat.c		\
 	procstat_vm.c
 
 LDADD+=	-lutil -lprocstat -lkvm
-DPADD+=	${LIBUTIL}
+DPADD+=	${LIBUTIL} ${LIBPROCSTAT} ${LIBKVM}
 
 .include <bsd.prog.mk>


More information about the svn-src-head mailing list