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.

(From OE-Core rev: db3cd1e08b08b99342d269882f31ec7e1daba2c6)

Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Randy Witt 2016-01-07 11:24:25 -08:00 committed by Richard Purdie
parent e306d5495a
commit 74c3667b2a
1 changed files with 1 additions and 1 deletions

View 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)