Was getting system python over spack python

This commit is contained in:
Kelly T. Kirk 2015-11-05 08:01:00 -05:00
parent 1c4ef29962
commit 618a1c7119

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