From: Randy Witt Date: Thu, 4 Feb 2016 20:31:43 +0000 (-0800) Subject: populate_sdk_ext: Don't set sdk_update_targets in the config X-Git-Tag: yocto-4.0~22736 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e9349939e22ca9cf0efe0795291c01fbdeb96a8c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git populate_sdk_ext: Don't set sdk_update_targets in the config sdk_update_targets isn't used by any code, so there is no reason to set it. Signed-off-by: Randy Witt Signed-off-by: Richard Purdie --- diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index da7fdfbcb92..ba300234442 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -99,7 +99,6 @@ python copy_buildsystem () { config.set('General', 'core_meta_subdir', core_meta_subdir) config.add_section('SDK') config.set('SDK', 'sdk_targets', d.getVar('SDK_TARGETS', True)) - config.set('SDK', 'sdk_update_targets', d.getVar('SDK_INSTALL_TARGETS', True)) updateurl = d.getVar('SDK_UPDATE_URL', True) if updateurl: config.set('SDK', 'updateserver', updateurl)