Some time ago, the sstate name field was dropped. This code wouldn't have
worked since then. Makes me wonder if we really need it.
Anyhow, my last patch properly breaks it. This fixes the naming so
it works as designed again.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
python siteconfig_do_siteconfig () {
shared_state = sstate_state_fromvars(d)
- if shared_state['name'] != 'populate-sysroot':
+ if shared_state['task'] != 'populate_sysroot':
return
if not os.path.isdir(os.path.join(d.getVar('FILE_DIRNAME', True), 'site_config')):
bb.debug(1, "No site_config directory, skipping do_siteconfig")