Fix bug in make jobs parameter.

This commit is contained in:
Todd Gamblin 2014-01-26 02:42:41 -08:00
parent a71c59d4fe
commit 4a913cbbd0

View file

@ -31,6 +31,6 @@ class Cmake(Package):
def install(self, spec, prefix):
configure('--prefix=' + prefix,
'--parallel=' + make_jobs)
'--parallel=' + str(make_jobs))
make()
make('install')