summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-14 06:30:45 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-14 06:30:45 +0000
commitceace9c6bdbbdf8970b84517b78ee44869596287 (patch)
tree49f0c97ca87478afe10defd3edd77d09ab858575 /Makefile
parent5f108d9df6bada119def52518152a487f8695702 (diff)
Since tmux doesn't actually need ncurses, use -lcurses/curses.h
instead. Pointed out by millert a while ago.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4630160c..ef628faa 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ CDIAGFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
CDIAGFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare
CDIAGFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align
-LDADD= -lutil -lncurses
+LDADD= -lutil -lcurses
DPADD= ${LIBUTIL}
.include <bsd.prog.mk>