From e4b263de33bdf0bed3421008008d40b916b7291a Mon Sep 17 00:00:00 2001 From: Henrik Garbergs Date: Wed, 29 Apr 2020 10:03:48 +0200 Subject: [PATCH] Correction of the clean-install make target so that it's able to remove python cache directories with content. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f6389846..5423c1197 100644 --- a/Makefile +++ b/Makefile @@ -212,7 +212,7 @@ clean-all: clean .PHONY: .clean-install .clean-install: - find $(PACKAGES) -name '__pycache__' -delete + find $(PACKAGES) -name '__pycache__' | xargs rm -rf rm -rf *.egg-info .PHONY: .clean-test