diff options
author | Anton Mikanovich <amikan@ilbers.de> | 2021-12-08 19:57:36 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-12-09 10:56:49 +0000 |
commit | f8474be059bb02dcb46a425c0a1842ff2d4d2c8d (patch) | |
tree | 014b44d2ee7b272199af0af482fe87c36f924705 /bitbake/lib | |
parent | 8e03013e19faac932b540eb07bde59aba0d3556a (diff) | |
download | poky-f8474be059bb02dcb46a425c0a1842ff2d4d2c8d.tar.gz |
bitbake: process: Do not mix stderr with stdout
We should not redirect stderr to stdout if we need to get separated
stdout and stderr contents from Popen.communicate() later.
(Bitbake rev: 1ecc1d9424877df89fcda2f23c306998998a65ff)
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/process.py b/bitbake/lib/bb/process.py index d5a1775fce..af5d804a1d 100644 --- a/bitbake/lib/bb/process.py +++ b/bitbake/lib/bb/process.py | |||
@@ -60,7 +60,7 @@ class Popen(subprocess.Popen): | |||
60 | "close_fds": True, | 60 | "close_fds": True, |
61 | "preexec_fn": subprocess_setup, | 61 | "preexec_fn": subprocess_setup, |
62 | "stdout": subprocess.PIPE, | 62 | "stdout": subprocess.PIPE, |
63 | "stderr": subprocess.STDOUT, | 63 | "stderr": subprocess.PIPE, |
64 | "stdin": subprocess.PIPE, | 64 | "stdin": subprocess.PIPE, |
65 | "shell": False, | 65 | "shell": False, |
66 | } | 66 | } |