summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-17 18:38:12 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-17 18:38:12 +0000
commitff61eee294124bc83f399e0027de1c9d7a9d9e86 (patch)
tree0629d2233db137ca656fcded725e628f14cfc2ed /Makefile
parentd5820171b790d3bc4a9584e30be6e0f3098f1791 (diff)
Don't use [4] since they are confusing and use the right size for memset. DOH.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cd199c96..fa0204f2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.94 2009-01-15 19:27:31 nicm Exp $
+# $Id: Makefile,v 1.95 2009-01-17 18:38:12 nicm Exp $
.SUFFIXES: .c .o .y .h
.PHONY: clean update-index.html upload-index.html
@@ -47,7 +47,7 @@ SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \
CC?= cc
INCDIRS+= -I. -I- -I/usr/local/include
-CFLAGS+= -O0 -DMETA="'${META}'"
+CFLAGS+= -DMETA="'${META}'"
.ifdef PROFILE
# Don't use ccache
CC= /usr/bin/gcc