diff options
author | ru <ru@FreeBSD.org> | 2007-10-01 18:15:11 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2007-10-01 18:15:11 +0000 |
commit | 0de18b1b0a14db0095b700d2d40a742b327ea811 (patch) | |
tree | 3304513635084cc8218bccdfe0c0000f04f281f9 /usr.sbin/pmcstat/Makefile | |
parent | 9439813d075fa749d870705314851a423813bbdc (diff) | |
download | FreeBSD-src-0de18b1b0a14db0095b700d2d40a742b327ea811.zip FreeBSD-src-0de18b1b0a14db0095b700d2d40a742b327ea811.tar.gz |
Fixed "make checkdpadd" (missing library dependencies).
Approved by: re (kensmith)
Diffstat (limited to 'usr.sbin/pmcstat/Makefile')
-rw-r--r-- | usr.sbin/pmcstat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pmcstat/Makefile b/usr.sbin/pmcstat/Makefile index d212c3f..819a0c0 100644 --- a/usr.sbin/pmcstat/Makefile +++ b/usr.sbin/pmcstat/Makefile @@ -5,7 +5,7 @@ PROG= pmcstat MAN= pmcstat.8 -DPADD= ${LIBPMC} ${LIBM} +DPADD= ${LIBKVM} ${LIBPMC} ${LIBM} LDADD= -lkvm -lpmc -lm WARNS?= 6 |