diff options
| -rw-r--r-- | meta/classes/sstate.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 49d54bc94a..b45da4fb23 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
| @@ -795,7 +795,9 @@ def sstate_setscene(d): | |||
| 795 | shared_state = sstate_state_fromvars(d) | 795 | shared_state = sstate_state_fromvars(d) |
| 796 | accelerate = sstate_installpkg(shared_state, d) | 796 | accelerate = sstate_installpkg(shared_state, d) |
| 797 | if not accelerate: | 797 | if not accelerate: |
| 798 | bb.fatal("No suitable staging package found") | 798 | msg = "No sstate archive obtainable, will run full task instead." |
| 799 | bb.warn(msg) | ||
| 800 | raise bb.BBHandledException(msg) | ||
| 799 | 801 | ||
| 800 | python sstate_task_prefunc () { | 802 | python sstate_task_prefunc () { |
| 801 | shared_state = sstate_state_fromvars(d) | 803 | shared_state = sstate_state_fromvars(d) |
