From fcdb823b393a03c0004115431d69ffc1f774700b Mon Sep 17 00:00:00 2001
From: "Robert P. Goldman" <rpgoldman@sift.net>
Date: Wed, 14 Sep 2016 09:11:41 -0500
Subject: [PATCH] Make "make clean" more chatty.

This seems to have the side-effect on Windows (cygwin) of making "make
clean" terminate, instead of hanging.  Since hanging on clean can cause
bad failures, I'm committing this, even though I don't have a theory
about why it improves things.
---
 Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile b/Makefile
index 10740b16e..5bd7f144c 100644
--- a/Makefile
+++ b/Makefile
@@ -172,7 +172,9 @@ clean:
 			  -and -not -path \""*/tags/*"\" -print -delete; \
 		done; \
 	     fi; \
+	    echo "Cleaned $$dir"; \
 	done
+	echo "Done with cleaning loop."
 	rm -rf build/ LICENSE test/try-reloading-dependency.asd test/hello-world-example asdf.lisp
 	rm -rf test/hello-world-example.exe test/mkcl_*.dll # needed only on MS-Windows
 	${MAKE} -C doc clean
-- 
GitLab