diff options
-rw-r--r-- | lib/spack/spack/packages/cmake.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/packages/cmake.py b/lib/spack/spack/packages/cmake.py index d4ab3402cd..70406610b6 100644 --- a/lib/spack/spack/packages/cmake.py +++ b/lib/spack/spack/packages/cmake.py @@ -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') |