summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-12 00:52:37 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-12 00:52:37 +0000
commit440a84b2aa0457f9d94903f04055c1b662d41fbc (patch)
treee4c3aadc3b0b958bd62c446f162bbf28f1a0c0a1 /Makefile
parent689751055235a2a4a84ec48e0c1c0fde08e246a2 (diff)
Use -O0 to prevent copy issues.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a403378f..207f6595 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.88 2009-01-11 23:31:46 nicm Exp $
+# $Id: Makefile,v 1.89 2009-01-12 00:52:37 nicm Exp $
.SUFFIXES: .c .o .y .h
.PHONY: clean update-index.html upload-index.html
@@ -44,7 +44,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+= -DMETA="'${META}'"
+CFLAGS+= -O0 -DMETA="'${META}'"
.ifdef PROFILE
# Don't use ccache
CC= /usr/bin/gcc