Skip to content
Snippets Groups Projects
Commit bb8a8ecd authored by Stephen Herbein's avatar Stephen Herbein
Browse files

json-c: fix build by running serially

parent b9148b17
Branches
Tags
No related merge requests found
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
############################################################################## ##############################################################################
from spack import * from spack import *
class LibjsonC(Package): class LibjsonC(Package):
""" A JSON implementation in C """ """ A JSON implementation in C """
homepage = "https://github.com/json-c/json-c/wiki" homepage = "https://github.com/json-c/json-c/wiki"
...@@ -34,5 +35,5 @@ class LibjsonC(Package): ...@@ -34,5 +35,5 @@ class LibjsonC(Package):
def install(self, spec, prefix): def install(self, spec, prefix):
configure('--prefix=%s' % prefix) configure('--prefix=%s' % prefix)
make() make(parallel=False)
make("install") make("install")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment