[whizard] Disable parallel builds to avoid race condition (#19270)
This commit is contained in:
parent
2399c2e78d
commit
bead81fab5
1 changed files with 4 additions and 0 deletions
|
@ -77,6 +77,10 @@ class Whizard(AutotoolsPackage):
|
|||
conflicts('%intel@:17',
|
||||
msg='The fortran compiler needs to support Fortran 2008. For more detailed information see https://whizard.hepforge.org/compilers.html')
|
||||
|
||||
# Trying to build in parallel leads to a race condition at the build step.
|
||||
# See: https://github.com/key4hep/k4-spack/issues/71
|
||||
parallel = False
|
||||
|
||||
def setup_build_environment(self, env):
|
||||
# whizard uses the compiler during runtime,
|
||||
# and seems incompatible with
|
||||
|
|
Loading…
Reference in a new issue