]> code.ossystems Code Review - openembedded-core.git/commitdiff
populate_sdk_ext: Pass excluded_targets as a list to prune_lockedsigs
authorRandy Witt <randy.e.witt@linux.intel.com>
Thu, 7 Jan 2016 19:24:25 +0000 (11:24 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 11 Jan 2016 23:23:15 +0000 (23:23 +0000)
prune_lockedsigs expects excluded_targets to be a list, whereas
previously it was passed in as a string.

Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/populate_sdk_ext.bbclass

index 3a65c07a51d3fba57c8b722c21ffa19786a6a3b3..87fb7671fd0ca7ff121aa58a76f2a46c39b8e85b 100644 (file)
@@ -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)