mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-06-21 08:52:27 +02:00
oe.external: redirect stderr to stdout for newer gcc
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user