[OE-core] [PATCH] base: Make do_cleansstate nostamp

Richard Purdie richard.purdie at linuxfoundation.org
Sun Feb 7 17:08:39 UTC 2016


We always want the cleansstate task to run so it should be
'nostamp' like the other clean tasks.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 82ec0c9..8ce9dd4 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -651,8 +651,9 @@ addtask cleansstate after do_clean
 python do_cleansstate() {
         sstate_clean_cachefiles(d)
 }
-
 addtask cleanall after do_cleansstate
+do_cleansstate[nostamp] = "1"
+
 python do_cleanall() {
     src_uri = (d.getVar('SRC_URI', True) or "").split()
     if len(src_uri) == 0:





More information about the Openembedded-core mailing list