Merge pull request #153 from ktkirk/libxml2

Was getting system python over spack python
This commit is contained in:
Todd Gamblin 2015-11-05 10:12:55 -08:00
commit 9474b8cdac

View file

@ -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")