From: antirez Date: Tue, 5 Jul 2011 11:27:21 +0000 (+0200) Subject: Ingore jemalloc make distclean error in Makefile, caused by make clean against a... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/10ba492fa3674117a9af0c3c80bed90fc415847d Ingore jemalloc make distclean error in Makefile, caused by make clean against a tree that never compiled jemalloc. --- diff --git a/Makefile b/Makefile index 7ce9031c..44df36f5 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) $@