summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2017-08-29 15:30:02 +0000
committerbluhm <bluhm@openbsd.org>2017-08-29 15:30:02 +0000
commit6ec473c48ffa1444ec67628afef2b3a677406a25 (patch)
tree2f9e30ced9f94083716e54ebd63be84af87e6086
parentrename *fdprint function to *dprintf, like libc version (diff)
downloadwireguard-openbsd-6ec473c48ffa1444ec67628afef2b3a677406a25.tar.xz
wireguard-openbsd-6ec473c48ffa1444ec67628afef2b3a677406a25.zip
Since rev 1.61 of print.c exp(3) and log(3) are not used anymore.
Do not link ps(1) with libm. from miod@; OK millert@
-rw-r--r--bin/ps/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ps/Makefile b/bin/ps/Makefile
index b06947c6d25..fd1a2b65240 100644
--- a/bin/ps/Makefile
+++ b/bin/ps/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.10 2016/01/10 14:04:16 schwarze Exp $
+# $OpenBSD: Makefile,v 1.11 2017/08/29 15:30:02 bluhm Exp $
PROG= ps
SRCS= keyword.c nlist.c print.c ps.c utf8.c
-DPADD= ${LIBM} ${LIBKVM}
-LDADD= -lm -lkvm
+DPADD= ${LIBKVM}
+LDADD= -lkvm
.include <bsd.prog.mk>