mirror of
https://git.yoctoproject.org/poky
synced 2026-05-04 22:39:49 +02:00
sstate: Make do_recipe_qa and do_populate_lic non-arch specific
The sstate functions currently pull in STAMP and SSTATE_PKG which end up pulling in DEFAULTTUNE and other variables. The location on disk encodes all the "architecture" information we need so clean up the dependencies of these tasks and make them non-architecture specific. (From OE-Core rev: 65df61ccff6781906449bfea386a8dd13112a51c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -354,7 +354,7 @@ def sstate_install(ss, d):
|
||||
for lock in locks:
|
||||
bb.utils.unlockfile(lock)
|
||||
|
||||
sstate_install[vardepsexclude] += "SSTATE_ALLOW_OVERLAP_FILES SSTATE_MANMACH SSTATE_MANFILEPREFIX"
|
||||
sstate_install[vardepsexclude] += "SSTATE_ALLOW_OVERLAP_FILES SSTATE_MANMACH SSTATE_MANFILEPREFIX STAMP"
|
||||
|
||||
def sstate_installpkg(ss, d):
|
||||
from oe.gpg_sign import get_signer
|
||||
@@ -724,7 +724,7 @@ def sstate_package(ss, d):
|
||||
|
||||
return
|
||||
|
||||
sstate_package[vardepsexclude] += "SSTATE_SIG_KEY"
|
||||
sstate_package[vardepsexclude] += "SSTATE_SIG_KEY SSTATE_PKG"
|
||||
|
||||
def pstaging_fetch(sstatefetch, d):
|
||||
import bb.fetch2
|
||||
|
||||
Reference in New Issue
Block a user