summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-07-18 19:37:12 -0500
committerGitHub <noreply@github.com>2017-07-18 19:37:12 -0500
commit2bd8d7a36ab97987a3a91beee600b51d267f8839 (patch)
tree0b3bdfa5fce1a270521b3927bbe30dbe7448dd21 /var
parente2485efb940ece8f73de5452bea9e45ab0f49237 (diff)
downloadspack-2bd8d7a36ab97987a3a91beee600b51d267f8839.tar.gz
spack-2bd8d7a36ab97987a3a91beee600b51d267f8839.tar.bz2
spack-2bd8d7a36ab97987a3a91beee600b51d267f8839.tar.xz
spack-2bd8d7a36ab97987a3a91beee600b51d267f8839.zip
Always install xproto in serial (#4809)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/xproto/package.py5
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)