At some point in the build phase a script spack-src/scripts/convert-template has a shebang looking for python in the path. Currently this picks up system python if in invoker's path, but should be using python from spack, so add a build dependency on python.
This commit is contained in:
parent
518372ccd1
commit
2cc7718edd
1 changed files with 1 additions and 0 deletions
|
@ -30,6 +30,7 @@ class Bml(CMakePackage):
|
|||
depends_on("blas")
|
||||
depends_on("lapack")
|
||||
depends_on('mpi', when='+mpi')
|
||||
depends_on('python', type='build')
|
||||
|
||||
def cmake_args(self):
|
||||
args = [
|
||||
|
|
Loading…
Reference in a new issue