Merge pull request #153 from ktkirk/libxml2
Was getting system python over spack python
This commit is contained in:
commit
9474b8cdac
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ class Libxml2(Package):
|
|||
depends_on('xz')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
configure("--prefix=%s" % prefix)
|
||||
configure("--prefix=%s" % prefix,
|
||||
"--with-python=%s" % spec['python'].prefix)
|
||||
|
||||
make()
|
||||
make("install")
|
||||
|
|
Loading…
Reference in a new issue