From 09823ba540853b50c5514ddd23edfaba4dcab701 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Fri, 21 Mar 2003 14:45:46 +0000 Subject: [PATCH] Fixed a typo in ${.CURDIR} spelling, fatal on systems without the /sys symlink pointing to the current tree. (Revision 1.2 made it non-fatal, but anyway.) Apply style.Makefile(5). Fixed ``make checkdpadd''. --- usr.sbin/gstat/Makefile | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/usr.sbin/gstat/Makefile b/usr.sbin/gstat/Makefile index bc79bb277f30..cff804055a1c 100644 --- a/usr.sbin/gstat/Makefile +++ b/usr.sbin/gstat/Makefile @@ -1,19 +1,12 @@ # $FreeBSD$ +.PATH: ${.CURDIR}/../../sys/kern + PROG= gstat - +NOMAN= SRCS= gstat.c subr_sbuf.c - -.PATH: ${CURDIR}/../../sys/kern - WARNS?= 5 - -LDADD += -lgeom -LDADD += -ldevstat -LDADD += -lkvm -LDADD += -lbsdxml -LDADD += -lcurses - -NOMAN= sorry +DPADD= ${LIBGEOM} ${LIBDEVSTAT} ${LIBKVM} ${LIBBSDXML} ${LIBCURSES} +LDADD= -lgeom -ldevstat -lkvm -lbsdxml -lcurses .include