From 48c4826df76485c272568316b1624546bd529fd8 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Wed, 8 Jun 2022 21:31:18 +0500 Subject: [PATCH] oe.external: redirect stderr to stdout for newer gcc Signed-off-by: Christopher Larson --- lib/oe/external.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oe/external.py b/lib/oe/external.py index 4708521..a7177b3 100644 --- a/lib/oe/external.py +++ b/lib/oe/external.py @@ -20,7 +20,7 @@ def run(d, cmd, *args): bb.debug(1, 'oe.external.run({})'.format(repr(args))) try: - output, _ = bb.process.run(args, cwd=topdir) + output, _ = bb.process.run(args, cwd=topdir, stderr=subprocess.STDOUT) except bb.process.CmdError as exc: bb.debug(1, 'oe.external.run: {} failed: {}'.format(subprocess.list2cmdline(args), exc)) else: