From 440a84b2aa0457f9d94903f04055c1b662d41fbc Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 12 Jan 2009 00:52:37 +0000 Subject: Use -O0 to prevent copy issues. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit