From: Joel Rosdahl Date: Thu, 5 Sep 2019 19:53:58 +0000 (+0200) Subject: Don’t error out if a libzstd/libb2 Makefile doesn’t exist when cleaning X-Git-Tag: v4.0~798 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68c548d365fa12e5d5174f4ec5aa2f1bf10fa277;p=thirdparty%2Fccache.git Don’t error out if a libzstd/libb2 Makefile doesn’t exist when cleaning --- diff --git a/Makefile.in b/Makefile.in index 3c6c721e4..64f97a371 100644 --- a/Makefile.in +++ b/Makefile.in @@ -129,8 +129,8 @@ install: ccache$(EXEEXT) @disable_man@ccache.1 .PHONY: clean clean: rm -rf $(files_to_clean) - [ ! -d src/third_party/zstd ] || $(MAKE) -C src/third_party/zstd/lib clean - [ ! -d src/third_party/libb2 ] || $(MAKE) -C src/third_party/libb2 clean + [ ! -f src/third_party/zstd/Makefile ] || $(MAKE) -C src/third_party/zstd/lib clean + [ ! -f src/third_party/libb2/Makefile ] || $(MAKE) -C src/third_party/libb2 clean src/third_party/snprintf.o: CFLAGS += @no_implicit_fallthrough_warning@