diff options
author | Zygmunt Krynicki <zygmunt.krynicki@huawei.com> | 2022-02-19 17:40:08 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-20 16:45:24 +0000 |
commit | 2f1555fa7a897a3345b79b3058c6523992ef232f (patch) | |
tree | db668eac6706750e0109ffae6bf7cf5b283ec584 /bitbake | |
parent | d40390c74bdcec4265ac703e0b090a9a428beb55 (diff) | |
download | poky-2f1555fa7a897a3345b79b3058c6523992ef232f.tar.gz |
bitbake: daemonize: Fix typo "separate"
(Bitbake rev: c93bc3849051c758fd7ca54226933172b0cb0c5d)
Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/daemonize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/daemonize.py b/bitbake/lib/bb/daemonize.py index 40fabd0c0a..4957bfd4b8 100644 --- a/bitbake/lib/bb/daemonize.py +++ b/bitbake/lib/bb/daemonize.py | |||
@@ -82,7 +82,7 @@ def createDaemon(function, logfile): | |||
82 | sys.stdout = so | 82 | sys.stdout = so |
83 | 83 | ||
84 | # Have stdout and stderr be the same so log output matches chronologically | 84 | # Have stdout and stderr be the same so log output matches chronologically |
85 | # and there aren't two seperate buffers | 85 | # and there aren't two separate buffers |
86 | sys.stderr = sys.stdout | 86 | sys.stderr = sys.stdout |
87 | 87 | ||
88 | try: | 88 | try: |