Skip to content
Snippets Groups Projects
Commit 642be5fa authored by Todd Gamblin's avatar Todd Gamblin Committed by GitHub
Browse files

Merge pull request #1197 from SteVwonder/json-c-serial-build

json-c: fix build by running serially
parents 2759f14f bb8a8ecd
No related branches found
No related tags found
No related merge requests found
......@@ -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")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment