From: antirez Date: Thu, 21 Oct 2010 22:16:32 +0000 (+0200) Subject: Makefile typo fixed for tcmalloc option X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/1a587ff843e668f1abe060ff614f5f3e9d3623bf?ds=inline Makefile typo fixed for tcmalloc option --- 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