From: Richard Purdie Date: Fri, 4 Apr 2014 17:12:58 +0000 (+0100) Subject: siteconfig: Unbreak after sstate changes some time ago X-Git-Tag: 2015-4~3109 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d282b276aa5e58d306be1c8ef9a985f2267a612b;p=openembedded-core.git siteconfig: Unbreak after sstate changes some time ago 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 --- diff --git a/meta/classes/siteconfig.bbclass b/meta/classes/siteconfig.bbclass index 3701b7cd81..9a4d03b887 100644 --- a/meta/classes/siteconfig.bbclass +++ b/meta/classes/siteconfig.bbclass @@ -1,6 +1,6 @@ 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")