From 4d55203ce5bf8c01cef0ea61da78ba745bafdc23 Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Mon, 7 Jun 2021 20:05:35 +0200 Subject: build_systems: Make autotools builds verbose (#24161) This is also what our other build systems are doing. --- lib/spack/spack/build_systems/autotools.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3-70-g09d2