diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-09 00:07:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-09 00:07:10 +0000 |
commit | 9fdb7d5897cc8e842c7d04270630f6793754e300 (patch) | |
tree | 3be996517efbf0ccf9be1bc1d30c617fc3aa4299 /usr.sbin/rtadvd | |
parent | 157df303eea89465576e23d6b7ee5150a6dc3b59 (diff) |
No longer need -lcompat
Diffstat (limited to 'usr.sbin/rtadvd')
-rw-r--r-- | usr.sbin/rtadvd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rtadvd/Makefile b/usr.sbin/rtadvd/Makefile index 1c43318ea5b..858ef13d1ec 100644 --- a/usr.sbin/rtadvd/Makefile +++ b/usr.sbin/rtadvd/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.3 2001/12/01 23:27:23 miod Exp $ +# $OpenBSD: Makefile,v 1.4 2003/05/09 00:07:09 millert Exp $ PROG= rtadvd SRCS= rtadvd.c rrenum.c advcap.c if.c config.c timer.c dump.c CPPFLAGS+=-DINET6 -LDADD+= -lcompat -lutil -DPADD+= ${LIBCOMPAT} ${LIBUTIL} +LDADD+= -lutil +DPADD+= ${LIBUTIL} MAN= rtadvd.8 rtadvd.conf.5 .include <bsd.prog.mk> |