Merge pull request #1197 from SteVwonder/json-c-serial-build
json-c: fix build by running serially
This commit is contained in:
		@@ -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):
 | 
				
			|||||||
    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")
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user