mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
bitbake: utils: Fix typo "dependency" and "spawning"
(Bitbake rev: 8f76117816fa84367753d5eee0264b90e9f29a8c) Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
aacc917646
commit
fe1b1bffa5
@@ -253,7 +253,7 @@ def explode_dep_versions(s):
|
||||
"""
|
||||
Take an RDEPENDS style string of format:
|
||||
"DEPEND1 (optional version) DEPEND2 (optional version) ..."
|
||||
skip null value and items appeared in dependancy string multiple times
|
||||
skip null value and items appeared in dependency string multiple times
|
||||
and return a dictionary of dependencies and versions.
|
||||
"""
|
||||
r = explode_dep_versions2(s)
|
||||
@@ -381,7 +381,7 @@ def _print_exception(t, value, tb, realfile, text, context):
|
||||
|
||||
error.append("Exception: %s" % ''.join(exception))
|
||||
|
||||
# If the exception is from spwaning a task, let's be helpful and display
|
||||
# If the exception is from spawning a task, let's be helpful and display
|
||||
# the output (which hopefully includes stderr).
|
||||
if isinstance(value, subprocess.CalledProcessError) and value.output:
|
||||
error.append("Subprocess output:")
|
||||
|
||||
Reference in New Issue
Block a user