From: Randy Witt Date: Thu, 7 Jan 2016 19:24:25 +0000 (-0800) Subject: populate_sdk_ext: Pass excluded_targets as a list to prune_lockedsigs X-Git-Tag: 2016-4~1668 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=db3cd1e08b08b99342d269882f31ec7e1daba2c6;p=openembedded-core.git populate_sdk_ext: Pass excluded_targets as a list to prune_lockedsigs prune_lockedsigs expects excluded_targets to be a list, whereas previously it was passed in as a string. 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 3a65c07a51..87fb7671fd 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -174,7 +174,7 @@ python copy_buildsystem () { excluded_targets = d.getVar('SDK_TARGETS', True) lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc' oe.copy_buildsystem.prune_lockedsigs([], - excluded_targets, + excluded_targets.split(), sigfile, lockedsigs_pruned)