diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-01-31 11:11:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-01-31 11:11:29 +0000 |
commit | 0094f424609d40104fe59c7314e04501da0e7c9c (patch) | |
tree | dd16e9f2a63f320b626935596d7bf280690dcca7 | |
parent | fceb6db87ac8ef9ad4b6724b1c49236e55988205 (diff) |
Fix DPADD, from Brad.
-rw-r--r-- | usr.bin/tmux/Makefile | 4 |
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> |