summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@ovgu.de>2021-06-07 20:05:35 +0200
committerGitHub <noreply@github.com>2021-06-07 14:05:35 -0400
commit4d55203ce5bf8c01cef0ea61da78ba745bafdc23 (patch)
tree03de6db091ddec4920ca20c8b66a8fa23f366fe3 /lib
parent2bdeaa1b482e68158ffdf2620e7d79c5fd69a7aa (diff)
downloadspack-4d55203ce5bf8c01cef0ea61da78ba745bafdc23.tar.gz
spack-4d55203ce5bf8c01cef0ea61da78ba745bafdc23.tar.bz2
spack-4d55203ce5bf8c01cef0ea61da78ba745bafdc23.tar.xz
spack-4d55203ce5bf8c01cef0ea61da78ba745bafdc23.zip
build_systems: Make autotools builds verbose (#24161)
This is also what our other build systems are doing.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/build_systems/autotools.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/autotools.py b/lib/spack/spack/build_systems/autotools.py
index bce9afebf7..2ab1b4a8fb 100644
--- a/lib/spack/spack/build_systems/autotools.py
+++ b/lib/spack/spack/build_systems/autotools.py
@@ -345,8 +345,11 @@ class AutotoolsPackage(PackageBase):
"""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