summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/sstate.bbclass4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 23d7de6556..ec9c5463ea 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -211,6 +211,8 @@ def sstate_install(ss, d):
211 for lock in locks: 211 for lock in locks:
212 bb.utils.unlockfile(lock) 212 bb.utils.unlockfile(lock)
213 213
214sstate_install[vardepsexclude] = "SSTATE_DUPWHITELIST STATE_MANMACH SSTATE_MANFILEPREFIX"
215
214def sstate_installpkg(ss, d): 216def sstate_installpkg(ss, d):
215 import oe.path 217 import oe.path
216 import subprocess 218 import subprocess
@@ -373,6 +375,8 @@ def sstate_clean(ss, d):
373 stfile.endswith(rm_nohash): 375 stfile.endswith(rm_nohash):
374 oe.path.remove(stfile) 376 oe.path.remove(stfile)
375 377
378sstate_clean[vardepsexclude] = "SSTATE_MANFILEPREFIX"
379
376CLEANFUNCS += "sstate_cleanall" 380CLEANFUNCS += "sstate_cleanall"
377 381
378python sstate_cleanall() { 382python sstate_cleanall() {