diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-07-08 11:08:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-08 11:08:10 -0700 |
commit | 642be5fa3de01024f533f836cc173588e9612dda (patch) | |
tree | 0c2445c9114da9543edff052aeb73987c86b3df0 | |
parent | 2759f14f23852c174a17ee660541e98b717ea6e7 (diff) | |
parent | bb8a8ecda33bebe1dd19f84ded752432ab5855bf (diff) | |
download | spack-642be5fa3de01024f533f836cc173588e9612dda.tar.gz spack-642be5fa3de01024f533f836cc173588e9612dda.tar.bz2 spack-642be5fa3de01024f533f836cc173588e9612dda.tar.xz spack-642be5fa3de01024f533f836cc173588e9612dda.zip |
Merge pull request #1197 from SteVwonder/json-c-serial-build
json-c: fix build by running serially
-rw-r--r-- | var/spack/repos/builtin/packages/libjson-c/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libjson-c/package.py b/var/spack/repos/builtin/packages/libjson-c/package.py index 75f3e130ad..662ed3cb5a 100644 --- a/var/spack/repos/builtin/packages/libjson-c/package.py +++ b/var/spack/repos/builtin/packages/libjson-c/package.py @@ -24,6 +24,7 @@ ############################################################################## from spack import * + class LibjsonC(Package): """ A JSON implementation in C """ homepage = "https://github.com/json-c/json-c/wiki" @@ -34,5 +35,5 @@ class LibjsonC(Package): def install(self, spec, prefix): configure('--prefix=%s' % prefix) - make() + make(parallel=False) make("install") |