summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-21 14:00:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-30 16:39:04 +0000
commitde9f47b09d5434642ba925182ae21a8e77e7e429 (patch)
treeb9a5be3bbdfa5f4805ae0d09eb610cab8bce03e6
parent6df929c8b58daa19423e5994bbf8bb68c912707f (diff)
downloadopenembedded-core-de9f47b09d5434642ba925182ae21a8e77e7e429.tar.gz
sstate.bbclass: Ensure we expand stamp-extra-info
Without this change we can end up looking for <stamp>.${MACHINE} instead of the expected expanded value. (From OE-Core rev: 9f743b5033177216fe0e1d3e43ba831f356df08e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 6abf55bb14..c9b84c8d6c 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -259,7 +259,7 @@ def sstate_clean(ss, d):
bb.utils.unlockfile(lock)
stfile = d.getVar("STAMP", True) + ".do_" + ss['task']
- extrainf = d.getVarFlag("do_" + ss['task'], 'stamp-extra-info')
+ extrainf = d.getVarFlag("do_" + ss['task'], 'stamp-extra-info', True)
oe.path.remove(stfile)
oe.path.remove(stfile + "_setscene")
if extrainf: