diff options
author | Randy Witt <randy.e.witt@linux.intel.com> | 2016-01-07 11:24:25 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-11 23:23:15 +0000 |
commit | db3cd1e08b08b99342d269882f31ec7e1daba2c6 (patch) | |
tree | 62e5a2cad5fafe9a89d35bd7aa613f2d55d5779b | |
parent | 6b70479e47b8a8743d8b410d6bc08da1607a318e (diff) | |
download | openembedded-core-db3cd1e08b08b99342d269882f31ec7e1daba2c6.tar.gz openembedded-core-db3cd1e08b08b99342d269882f31ec7e1daba2c6.tar.bz2 openembedded-core-db3cd1e08b08b99342d269882f31ec7e1daba2c6.zip |
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 <randy.e.witt@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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) |