libquo: Improve dependency code, cleanup configure. (#48181)

* Fix issue reported by some users regarding some build dependencies.
* Remove invalid configure-time flag that was recently introduced.

Signed-off-by: Samuel K. Gutierrez <samuel@lanl.gov>
This commit is contained in:
Samuel K. Gutiérrez 2024-12-17 19:58:07 -07:00 committed by GitHub
parent de739db153
commit eadf8727e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,10 +32,10 @@ class Libquo(AutotoolsPackage):
depends_on("mpi")
depends_on("m4", when="@develop", type="build")
depends_on("autoconf", when="@develop", type="build")
depends_on("automake", when="@develop", type="build")
depends_on("libtool", when="@develop", type="build")
depends_on("m4", type="build")
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
@when("@develop")
def autoreconf(self, spec, prefix):
@ -47,5 +47,4 @@ def configure_args(self):
f"CC={self.spec['mpi'].mpicc}",
f"FC={self.spec['mpi'].mpifc}",
# hwloc is vendored
"--disable-levelzero",
]