diff options
author | 2002-05-23 10:35:46 +0000 | |
---|---|---|
committer | 2002-05-23 10:35:46 +0000 | |
commit | 320c900df2551551266ed2824bdc629e91c249f9 (patch) | |
tree | 7a6383ab8055390239176063f77f2f3bf6a824fe /libexec/rpc.rstatd | |
parent | if NOKVM is defined, do not do the KVM stuff at all (diff) | |
download | wireguard-openbsd-320c900df2551551266ed2824bdc629e91c249f9.tar.xz wireguard-openbsd-320c900df2551551266ed2824bdc629e91c249f9.zip |
no need for -lkvm anymore
Diffstat (limited to 'libexec/rpc.rstatd')
-rw-r--r-- | libexec/rpc.rstatd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/rpc.rstatd/Makefile b/libexec/rpc.rstatd/Makefile index 3982bd9ce10..e26a0c5f01a 100644 --- a/libexec/rpc.rstatd/Makefile +++ b/libexec/rpc.rstatd/Makefile @@ -1,15 +1,15 @@ -# $OpenBSD: Makefile,v 1.6 2001/06/27 06:16:46 art Exp $ +# $OpenBSD: Makefile,v 1.7 2002/05/23 10:35:46 deraadt Exp $ PROG = rpc.rstatd .PATH: ${.CURDIR}/../../usr.bin/vmstat -CFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat +CFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat -DNOKVM SRCS = dkstats.c rstatd.c rstat_proc.c MAN = rpc.rstatd.8 MLINKS= rpc.rstatd.8 rstatd.8 -DPADD= ${LIBRPCSVC} ${LIBKVM} -LDADD= -lrpcsvc -lkvm +DPADD= ${LIBRPCSVC} +LDADD= -lrpcsvc .include <bsd.prog.mk> |