From 1a587ff843e668f1abe060ff614f5f3e9d3623bf Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 22 Oct 2010 00:16:32 +0200 Subject: [PATCH] Makefile typo fixed for tcmalloc option --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index e99a18a5..e83a022b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -15,7 +15,7 @@ endif ifeq ($(USE_TCMALLOC),yes) CCLINK+= -ltcmalloc - CCFLAGS+= -DUSE_TCMALLOC + CFLAGS+= -DUSE_TCMALLOC endif CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF) DEBUG?= -g -rdynamic -ggdb