From 1750f2f52bbbb30315cf57062e25d3440d0bb4b1 Mon Sep 17 00:00:00 2001 From: Christian Schmidt Date: Tue, 25 Oct 2011 21:17:49 +0200 Subject: [PATCH] Fix make clean - now cleans everything but the ccache --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 44e28ba802..eb6d627dae 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -BUILD_DIRS="build.*" +BUILD_DIRS=build.* all: system @@ -9,7 +9,7 @@ release: ./scripts/image release clean: - rm -rf $(BUILD_DIRS) + rm -rf $(BUILD_DIRS)/* $(BUILD_DIRS)/.stamps src-pkg: tar cvjf sources.tar.bz2 sources .stamps