summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2010-01-31 11:11:28 +0000
committernicm <nicm@openbsd.org>2010-01-31 11:11:28 +0000
commit312d2eabd656ff6839572925cfc58d61e5b44857 (patch)
tree25370632bf92eabc2107cff83d50027391f20f89
parentprivilege separation of npppd. (diff)
downloadwireguard-openbsd-312d2eabd656ff6839572925cfc58d61e5b44857.tar.xz
wireguard-openbsd-312d2eabd656ff6839572925cfc58d61e5b44857.zip
Fix DPADD, from Brad.
-rw-r--r--usr.bin/tmux/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/Makefile b/usr.bin/tmux/Makefile
index 2a194962dbe..cc866c9f556 100644
--- a/usr.bin/tmux/Makefile
+++ b/usr.bin/tmux/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.34 2010/01/07 20:52:18 nicm Exp $
+# $OpenBSD: Makefile,v 1.35 2010/01/31 11:11:28 nicm Exp $
PROG= tmux
SRCS= attributes.c cfg.c client.c clock.c \
@@ -46,6 +46,6 @@ CDIAGFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare
CDIAGFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align
LDADD= -lutil -lcurses -levent
-DPADD= ${LIBUTIL}
+DPADD= ${LIBUTIL} ${LIBCURSES} ${LIBEVENT}
.include <bsd.prog.mk>