summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-07-05 13:27:21 +0200
committerantirez <antirez@gmail.com>2011-07-05 13:27:21 +0200
commit10ba492fa3674117a9af0c3c80bed90fc415847d (patch)
tree54ef51682a8056d437d2bb5396f01bddbc71aa7c /Makefile
parent208092ad703855ebd42873defdcb74fd6d6706d7 (diff)
downloadredis-10ba492fa3674117a9af0c3c80bed90fc415847d.tar.gz
Ingore jemalloc make distclean error in Makefile, caused by make clean against a tree that never compiled jemalloc.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7ce9031c4..44df36f5e 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ clean:
cd src && $(MAKE) $@
cd deps/hiredis && $(MAKE) $@
cd deps/linenoise && $(MAKE) $@
- cd deps/jemalloc && $(MAKE) distclean
+ -(cd deps/jemalloc && $(MAKE) distclean)
$(TARGETS):
cd src && $(MAKE) $@