diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2017-07-18 19:37:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-18 19:37:12 -0500 |
commit | 2bd8d7a36ab97987a3a91beee600b51d267f8839 (patch) | |
tree | 0b3bdfa5fce1a270521b3927bbe30dbe7448dd21 | |
parent | e2485efb940ece8f73de5452bea9e45ab0f49237 (diff) | |
download | spack-2bd8d7a36ab97987a3a91beee600b51d267f8839.tar.gz spack-2bd8d7a36ab97987a3a91beee600b51d267f8839.tar.bz2 spack-2bd8d7a36ab97987a3a91beee600b51d267f8839.tar.xz spack-2bd8d7a36ab97987a3a91beee600b51d267f8839.zip |
Always install xproto in serial (#4809)
-rw-r--r-- | var/spack/repos/builtin/packages/xproto/package.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/xproto/package.py b/var/spack/repos/builtin/packages/xproto/package.py index de91cf0c95..2bb1df326c 100644 --- a/var/spack/repos/builtin/packages/xproto/package.py +++ b/var/spack/repos/builtin/packages/xproto/package.py @@ -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) |