diff options
author | antirez <antirez@gmail.com> | 2011-07-05 13:27:21 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2011-07-05 13:27:21 +0200 |
commit | 10ba492fa3674117a9af0c3c80bed90fc415847d (patch) | |
tree | 54ef51682a8056d437d2bb5396f01bddbc71aa7c /Makefile | |
parent | 208092ad703855ebd42873defdcb74fd6d6706d7 (diff) | |
download | redis-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) $@ |