summaryrefslogtreecommitdiffstats
path: root/meta/classes/rm_work.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-03 11:34:04 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-03 11:34:04 +0000
commit1a559cbcca083d835447ad99ce85c683e49272f6 (patch)
tree6f239ca50ca0ab78449f210bffda9a690bc978ac /meta/classes/rm_work.bbclass
parent4b793fff8ecba1e3aa8cf9abadb6fa8e0bdd84b8 (diff)
downloadopenembedded-core-contrib-1a559cbcca083d835447ad99ce85c683e49272f6.tar.gz
rm_work: Retain package and package-split directories to be consistent with sstate code
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rm_work.bbclass')
-rw-r--r--meta/classes/rm_work.bbclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/rm_work.bbclass b/meta/classes/rm_work.bbclass
index 501583cdc9..7cbdb17623 100644
--- a/meta/classes/rm_work.bbclass
+++ b/meta/classes/rm_work.bbclass
@@ -19,7 +19,10 @@ do_rm_work () {
do
if [ `basename ${S}` = $dir ]; then
rm -rf $dir
- elif [ $dir != 'temp' ]; then
+ # The package and package-split directories are retained by sstate for
+ # do_package so we retain them here too. Anything in sstate 'plaindirs'
+ # should be retained. Also retain logs and other files in temp.
+ elif [ $dir != 'temp' ] && [ $dir != 'package' ] && [ $dir != 'package-split' ]; then
rm -rf $dir
fi
done