From 8a745d310f966194e82f12f6453f05cc877379d6 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Thu, 2 Aug 2012 09:27:26 -0300 Subject: build system: remove directories created by tests in "make clean" These extra directories cause problems for building on Debian twice in a row. In order to remove directories, we need to us "rm -rf" instead of "rm -f". So now we should be extra careful what we add to the variable CLEAN. --- Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.local') diff --git a/Makefile.local b/Makefile.local index 296995d3..6d6896a3 100644 --- a/Makefile.local +++ b/Makefile.local @@ -265,7 +265,7 @@ quiet ?= $($(shell echo $1 | sed -e s'/ .*//')) .PHONY : clean clean: - rm -f $(CLEAN); rm -rf .deps + rm -rf $(CLEAN); rm -rf .deps # We don't (yet) have any distributed files not in the upstream repository. # So distclean is currently identical to clean. -- cgit v1.2.3