diff options
author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2005-08-24 19:28:33 +0000 |
---|---|---|
committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2005-08-24 19:28:33 +0000 |
commit | 0ea90af02ed1f3d76a26ab4b8866a3530be9e353 (patch) | |
tree | 28db68ffa5202c48c7e0e48ab4493e67dcc1275b /usr.sbin/watchdogd/Makefile | |
parent | a032b226c8fdaeeae21a2c8f8d24b1bfaf95a1da (diff) | |
download | src-0ea90af02ed1f3d76a26ab4b8866a3530be9e353.tar.gz src-0ea90af02ed1f3d76a26ab4b8866a3530be9e353.zip |
Use pidfile(3) in watchdogd(8).
Notes
Notes:
svn path=/head/; revision=149434
Diffstat (limited to 'usr.sbin/watchdogd/Makefile')
-rw-r--r-- | usr.sbin/watchdogd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/watchdogd/Makefile b/usr.sbin/watchdogd/Makefile index 68675c76e154..08880e149168 100644 --- a/usr.sbin/watchdogd/Makefile +++ b/usr.sbin/watchdogd/Makefile @@ -5,8 +5,8 @@ LINKS= ${BINDIR}/watchdogd ${BINDIR}/watchdog MAN= watchdogd.8 watchdog.8 WARNS?= 6 -LDADD= -lm -DPADD= ${LIBM} +LDADD= -lm -lutil +DPADD= ${LIBM} ${LIBUTIL} .include <bsd.prog.mk> |