summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2012-04-13 17:41:40 -0700
committerPieter Noordhuis <pcnoordhuis@gmail.com>2012-04-13 17:52:33 -0700
commitc04278ba3b3cccf1df4d9fc7346c190fc8d0b14a (patch)
treeb2094ece26d18f8393bb4b8125af350766b54bd8 /src/Makefile
parent166cf8a3b84c76e0870261dc9b29848ce7fc63aa (diff)
downloadredis-c04278ba3b3cccf1df4d9fc7346c190fc8d0b14a.tar.gz
Question mark assignment is not needed
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 859e378e7..9deeda4cc 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