build_systems: Make autotools builds verbose (#24161)
This is also what our other build systems are doing.
This commit is contained in:
parent
2bdeaa1b48
commit
4d55203ce5
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue