Always install xproto in serial (#4809)

This commit is contained in:
Adam J. Stewart 2017-07-18 19:37:12 -05:00 committed by GitHub
parent e2485efb94
commit 2bd8d7a36a

View File

@ -43,3 +43,8 @@ class Xproto(AutotoolsPackage):
depends_on('pkg-config@0.9.0:', type='build')
depends_on('util-macros', type='build')
def install(self, spec, prefix):
# Installation fails in parallel
# See https://github.com/LLNL/spack/issues/4805
make('install', parallel=False)