From: Pieter Noordhuis Date: Sat, 14 Apr 2012 00:41:40 +0000 (-0700) Subject: Question mark assignment is not needed X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/c04278ba3b3cccf1df4d9fc7346c190fc8d0b14a?ds=inline;hp=--cc Question mark assignment is not needed --- c04278ba3b3cccf1df4d9fc7346c190fc8d0b14a diff --git a/src/Makefile b/src/Makefile index 859e378e..9deeda4c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -38,9 +38,9 @@ FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src # Default allocator ifeq ($(uname_S),Linux) - MALLOC?=jemalloc + MALLOC=jemalloc else - MALLOC?=libc + MALLOC=libc endif # Backwards compatibility for selecting an allocator