From 45b2a612eb512cb9a324c8d758f333a6f88e1e50 Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Fri, 7 Aug 2020 11:03:55 +0100 Subject: [PATCH] Update Makefile.am zcutil/bin should be cleaned by `make distclean`, not `make clean`. Co-authored-by: str4d --- Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 74e3734b3..141f1a849 100644 --- a/Makefile.am +++ b/Makefile.am @@ -169,4 +169,7 @@ DISTCHECK_CONFIGURE_FLAGS = --enable-man clean-local: rm -rf test_bitcoin.coverage/ zcash-gtest.coverage/ total.coverage/ rm -rf afl-temp - rm -rf zcutil/bin + +distclean-local: + rm -f zcutil/bin/db_* + rmdir zcutil/bin 2>/dev/null || true