Fix bug in make jobs parameter.
This commit is contained in:
parent
a71c59d4fe
commit
4a913cbbd0
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue