summaryrefslogtreecommitdiff
path: root/usr.sbin/slaacctl
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2017-06-03 10:00:30 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2017-06-03 10:00:30 +0000
commitf5d3e9ec6a694be409202febd15b21d110c9ccd2 (patch)
tree6da146b33744ff127b42eec00f54d21a3352e87f /usr.sbin/slaacctl
parentd2e739346f9e461b7a5afbecfc9a5fb2644db1ab (diff)
Move slaacd to /sbin
jca points out that all the other interface configuration tools live there (like ifconfig or dhclient). Furthermore it starts so early in the boot process that /usr might not be mounted yet if it's a nfs filesystem. sthen and deraadt agree
Diffstat (limited to 'usr.sbin/slaacctl')
-rw-r--r--usr.sbin/slaacctl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/slaacctl/Makefile b/usr.sbin/slaacctl/Makefile
index 487819d2e45..9bc1d6dc90c 100644
--- a/usr.sbin/slaacctl/Makefile
+++ b/usr.sbin/slaacctl/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.1 2017/04/10 13:35:42 florian Exp $
+# $OpenBSD: Makefile,v 1.2 2017/06/03 10:00:29 florian Exp $
PROG= slaacctl
SRCS= slaacctl.c parser.c
@@ -10,7 +10,7 @@ CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
-CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../slaacd
+CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sbin/slaacd
LDADD= -lutil
DPADD= ${LIBUTIL}