]> code.ossystems Code Review - openembedded-core.git/commitdiff
ccache.bbclass: don't remove CCACHE_DIR as part of do_clean
authorAndre McCurdy <armccurdy@gmail.com>
Thu, 11 Aug 2016 08:38:54 +0000 (01:38 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 17 Aug 2016 09:31:58 +0000 (10:31 +0100)
Removing the ccache directory as part of do_clean is unnecessarily
conservative and defeats many of the benefits of ccache.

The original justification for this behaviour was to avoid confusion
in the corner case that the ccache directory becomes corrupted.
However the standard approach for dealing with such highly unlikely
corner cases (ie manually removing tmp) would also recover from
corruption of the ccache directories, without the negative impact of
defeating ccache during normal development.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/ccache.bbclass

index 2cdce46932fc8176296d2aebe88d813170696935..2e9837cf075925dcfd089b2bd9ec33e54025d200 100644 (file)
@@ -4,5 +4,3 @@ CCACHE_DISABLE[unexport] = "1"
 
 do_configure[dirs] =+ "${CCACHE_DIR}"
 do_kernel_configme[dirs] =+ "${CCACHE_DIR}"
-
-do_clean[cleandirs] += "${CCACHE_DIR}"