namd: disable parallel build for 3.0b3 (#43215)

This commit is contained in:
Rocco Meli 2024-03-21 22:26:36 +01:00 committed by GitHub
parent aa39465188
commit 67ac9c46a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -289,6 +289,13 @@ def edit(self, spec, prefix):
join_path(self.build_directory, "Make.config"),
)
@when("@3.0b3")
def build(self, spec, prefix):
# Disable parallel build
# https://github.com/spack/spack/pull/43215
with working_dir(self.build_directory):
make(parallel=False)
def install(self, spec, prefix):
with working_dir(self.build_directory):
mkdirp(prefix.bin)