summaryrefslogtreecommitdiff
path: root/usr.sbin/gstat
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-03-21 17:10:54 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-03-21 17:10:54 +0000
commit3cc4ca2df51dfb19b194591eff91945838ceb371 (patch)
treebac17f717b35d29d82611e24508df7672f95dfe5 /usr.sbin/gstat
parent57842a38fd3e863d9474a244013fd4cb1ef271f7 (diff)
downloadsrc-test-3cc4ca2df51dfb19b194591eff91945838ceb371.tar.gz
src-test-3cc4ca2df51dfb19b194591eff91945838ceb371.zip
Why doesn't anybody ever tell me anything? When did we get a libsbuf ?
Geeze, I'll just crawl back into the kernel where I know what's going on... Use libsbuf instead of pulling a file in from the kernel. Taught by: jhb
Notes
Notes: svn path=/head/; revision=112468
Diffstat (limited to 'usr.sbin/gstat')
-rw-r--r--usr.sbin/gstat/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/gstat/Makefile b/usr.sbin/gstat/Makefile
index cff804055a1cf..ce5232799f27b 100644
--- a/usr.sbin/gstat/Makefile
+++ b/usr.sbin/gstat/Makefile
@@ -1,12 +1,10 @@
# $FreeBSD$
-.PATH: ${.CURDIR}/../../sys/kern
-
PROG= gstat
NOMAN=
-SRCS= gstat.c subr_sbuf.c
+SRCS= gstat.c
WARNS?= 5
-DPADD= ${LIBGEOM} ${LIBDEVSTAT} ${LIBKVM} ${LIBBSDXML} ${LIBCURSES}
-LDADD= -lgeom -ldevstat -lkvm -lbsdxml -lcurses
+DPADD= ${LIBGEOM} ${LIBDEVSTAT} ${LIBKVM} ${LIBBSDXML} ${LIBCURSES} ${LIBSBUF}
+LDADD= -lgeom -ldevstat -lkvm -lbsdxml -lcurses -lsbuf
.include <bsd.prog.mk>