summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/sstate.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 796c1a9f60..90119732dd 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -629,7 +629,7 @@ def sstate_checkhashes(sq_fn, sq_task, sq_hash, sq_hashfn, d):
629 629
630 tname = sq_task[task][3:] 630 tname = sq_task[task][3:]
631 631
632 if tname in ["fetch", "unpack", "patch", "populate_lic"] and splithashfn[2]: 632 if tname in ["fetch", "unpack", "patch", "populate_lic", "preconfigure"] and splithashfn[2]:
633 spec = splithashfn[2] 633 spec = splithashfn[2]
634 extrapath = "" 634 extrapath = ""
635 635
@@ -784,7 +784,7 @@ python sstate_eventhandler() {
784 taskname = d.getVar("BB_RUNTASK", True)[3:] 784 taskname = d.getVar("BB_RUNTASK", True)[3:]
785 spec = d.getVar('SSTATE_PKGSPEC', True) 785 spec = d.getVar('SSTATE_PKGSPEC', True)
786 swspec = d.getVar('SSTATE_SWSPEC', True) 786 swspec = d.getVar('SSTATE_SWSPEC', True)
787 if taskname in ["fetch", "unpack", "patch", "populate_lic"] and swspec: 787 if taskname in ["fetch", "unpack", "patch", "populate_lic", "preconfigure"] and swspec:
788 d.setVar("SSTATE_PKGSPEC", "${SSTATE_SWSPEC}") 788 d.setVar("SSTATE_PKGSPEC", "${SSTATE_SWSPEC}")
789 d.setVar("SSTATE_EXTRAPATH", "") 789 d.setVar("SSTATE_EXTRAPATH", "")
790 sstatepkg = d.getVar('SSTATE_PKG', True) 790 sstatepkg = d.getVar('SSTATE_PKG', True)