diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-01 23:27:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-01 23:27:25 +0000 |
commit | b11bbb51235bd85172226ea037257b53ee9402da (patch) | |
tree | f6118a5419bc82550325ed0df2f3e50047f6ffbb /usr.sbin/rbootd/Makefile | |
parent | ea7f37b365f29a8552fe175609d79d58051b87c4 (diff) |
Use pidfile() instead of doing the equivalent thing by hand, and sometimes
forgetting to unlink the pid file at exit.
ok millert@ deraadt@
Diffstat (limited to 'usr.sbin/rbootd/Makefile')
-rw-r--r-- | usr.sbin/rbootd/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/rbootd/Makefile b/usr.sbin/rbootd/Makefile index ad2ccea3285..11361492ec6 100644 --- a/usr.sbin/rbootd/Makefile +++ b/usr.sbin/rbootd/Makefile @@ -1,7 +1,9 @@ -# $OpenBSD: Makefile,v 1.2 1997/09/21 11:44:11 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2001/12/01 23:27:23 miod Exp $ PROG= rbootd SRCS= bpf.c conf.c parseconf.c rbootd.c rmpproto.c utils.c MAN= rbootd.8 +LDADD+= -lutil +DPADD+= ${LIBUTIL} .include <bsd.prog.mk> |