mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
sstatesig: Handle special case of gcc-source shared-workdir for printdiff
Often, bitbake -S printdiff would show that there was a checksum not found which would turn out to be from gcc-source. This is due to it being a shared-workdir recipe. For now, hardcode the special case into the sstatesig code to stop people (including me) puzzling over this. If/as/when we add any other shared workdir recipes, we'll need to rethink this. (From OE-Core rev: f11342f0c838b520828927c9d69f7c17309c1b48) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -236,6 +236,10 @@ def find_siginfo(pn, taskname, taskhashlist, d):
|
||||
localdata.setVar('PR', '*')
|
||||
localdata.setVar('EXTENDPE', '')
|
||||
stamp = localdata.getVar('STAMP', True)
|
||||
if pn.startswith("gcc-source"):
|
||||
# gcc-source shared workdir is a special case :(
|
||||
stamp = localdata.expand("${STAMPS_DIR}/work-shared/gcc-${PV}-${PR}")
|
||||
|
||||
filespec = '%s.%s.sigdata.*' % (stamp, taskname)
|
||||
foundall = False
|
||||
import glob
|
||||
|
||||
Reference in New Issue
Block a user