mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
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)
(From OE-Core rev: de9f47b09d5434642ba925182ae21a8e77e7e429)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user