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
@ -345,8 +345,11 @@ def build(self, spec, prefix):
|
|||||||
"""Makes the build targets specified by
|
"""Makes the build targets specified by
|
||||||
:py:attr:``~.AutotoolsPackage.build_targets``
|
: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):
|
with working_dir(self.build_directory):
|
||||||
inspect.getmodule(self).make(*self.build_targets)
|
inspect.getmodule(self).make(*params)
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
"""Makes the install targets specified by
|
"""Makes the install targets specified by
|
||||||
|
Loading…
Reference in New Issue
Block a user