mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
8e03013e19
commit
f8474be059
@@ -60,7 +60,7 @@ class Popen(subprocess.Popen):
|
|||||||
"close_fds": True,
|
"close_fds": True,
|
||||||
"preexec_fn": subprocess_setup,
|
"preexec_fn": subprocess_setup,
|
||||||
"stdout": subprocess.PIPE,
|
"stdout": subprocess.PIPE,
|
||||||
"stderr": subprocess.STDOUT,
|
"stderr": subprocess.PIPE,
|
||||||
"stdin": subprocess.PIPE,
|
"stdin": subprocess.PIPE,
|
||||||
"shell": False,
|
"shell": False,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user