build_systems: Make autotools builds verbose (#24161)

This is also what our other build systems are doing.
This commit is contained in:
Michael Kuhn 2021-06-07 20:05:35 +02:00 committed by GitHub
parent 2bdeaa1b48
commit 4d55203ce5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -345,8 +345,11 @@ def build(self, spec, prefix):
"""Makes the build targets specified by
:py:attr:``~.AutotoolsPackage.build_targets``
"""
# See https://autotools.io/automake/silent.html
params = ['V=1']
params += self.build_targets
with working_dir(self.build_directory):
inspect.getmodule(self).make(*self.build_targets)
inspect.getmodule(self).make(*params)
def install(self, spec, prefix):
"""Makes the install targets specified by