python/{cmake,autotools}: build in verbose mode

Make sure all the gory details are visible in CI logs.
This commit is contained in:
Max Kellermann
2022-08-08 10:05:30 +02:00
parent d32ed194e8
commit 10aec174d5
3 changed files with 5 additions and 3 deletions

@ -49,10 +49,11 @@ class AutotoolsProject(MakeProject):
'STRIP=' + toolchain.strip,
'--host=' + toolchain.arch,
'--prefix=' + toolchain.install_prefix,
'--enable-silent-rules',
'--disable-silent-rules',
] + self.configure_args
try:
print(configure)
subprocess.check_call(configure, cwd=build, env=toolchain.env)
except subprocess.CalledProcessError:
# dump config.log after a failed configure run