diff options
author | Zygmunt Krynicki <zygmunt.krynicki@huawei.com> | 2022-02-19 17:40:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-20 16:45:25 +0000 |
commit | fe1b1bffa54514b1971e29a478ef3f08fcd17e5e (patch) | |
tree | 01d0ab06bc0407a62ddcc588a8602f9472078548 | |
parent | aacc9176468c4399a2e34dbfd10f381bbc976a78 (diff) | |
download | poky-fe1b1bffa54514b1971e29a478ef3f08fcd17e5e.tar.gz |
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>
-rw-r--r-- | bitbake/lib/bb/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 8d614fe236..aa962c4e5d 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -253,7 +253,7 @@ def explode_dep_versions(s): | |||
253 | """ | 253 | """ |
254 | Take an RDEPENDS style string of format: | 254 | Take an RDEPENDS style string of format: |
255 | "DEPEND1 (optional version) DEPEND2 (optional version) ..." | 255 | "DEPEND1 (optional version) DEPEND2 (optional version) ..." |
256 | skip null value and items appeared in dependancy string multiple times | 256 | skip null value and items appeared in dependency string multiple times |
257 | and return a dictionary of dependencies and versions. | 257 | and return a dictionary of dependencies and versions. |
258 | """ | 258 | """ |
259 | r = explode_dep_versions2(s) | 259 | r = explode_dep_versions2(s) |
@@ -381,7 +381,7 @@ def _print_exception(t, value, tb, realfile, text, context): | |||
381 | 381 | ||
382 | error.append("Exception: %s" % ''.join(exception)) | 382 | error.append("Exception: %s" % ''.join(exception)) |
383 | 383 | ||
384 | # If the exception is from spwaning a task, let's be helpful and display | 384 | # If the exception is from spawning a task, let's be helpful and display |
385 | # the output (which hopefully includes stderr). | 385 | # the output (which hopefully includes stderr). |
386 | if isinstance(value, subprocess.CalledProcessError) and value.output: | 386 | if isinstance(value, subprocess.CalledProcessError) and value.output: |
387 | error.append("Subprocess output:") | 387 | error.append("Subprocess output:") |