From 68c548d365fa12e5d5174f4ec5aa2f1bf10fa277 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Thu, 5 Sep 2019 21:53:58 +0200 Subject: [PATCH] =?utf8?q?Don=E2=80=99t=20error=20out=20if=20a=20libzstd/l?= =?utf8?q?ibb2=20Makefile=20doesn=E2=80=99t=20exist=20when=20cleaning?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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@ -- 2.47.3