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:26:29 +0000 |
commit | 74c3667b2a99832ef277f0375d8eba77aa150b94 (patch) | |
tree | 8c450762b21478dabfede0f3d45feb7a345417b2 /meta | |
parent | e306d5495a33c006fc7281c412f70af53d6c41a4 (diff) | |
download | poky-74c3667b2a99832ef277f0375d8eba77aa150b94.tar.gz |
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>
Diffstat (limited to 'meta')
-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 () { | |||
174 | excluded_targets = d.getVar('SDK_TARGETS', True) | 174 | excluded_targets = d.getVar('SDK_TARGETS', True) |
175 | lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc' | 175 | lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc' |
176 | oe.copy_buildsystem.prune_lockedsigs([], | 176 | oe.copy_buildsystem.prune_lockedsigs([], |
177 | excluded_targets, | 177 | excluded_targets.split(), |
178 | sigfile, | 178 | sigfile, |
179 | lockedsigs_pruned) | 179 | lockedsigs_pruned) |
180 | 180 | ||