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/route6d/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/route6d/Makefile')
-rw-r--r-- | usr.sbin/route6d/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/route6d/Makefile b/usr.sbin/route6d/Makefile index a01e3f75fc7..b8834ae9263 100644 --- a/usr.sbin/route6d/Makefile +++ b/usr.sbin/route6d/Makefile @@ -1,7 +1,9 @@ -# $OpenBSD: Makefile,v 1.4 2001/02/07 13:52:23 itojun Exp $ +# $OpenBSD: Makefile,v 1.5 2001/12/01 23:27:23 miod Exp $ PROG= route6d MAN= route6d.8 +LDADD+= -lutil +DPADD+= ${LIBUTIL} CPPFLAGS+= -DINET6 |