summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/libxml2/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/libxml2/package.py b/var/spack/repos/builtin/packages/libxml2/package.py
index f5b65c1d24..360386669a 100644
--- a/var/spack/repos/builtin/packages/libxml2/package.py
+++ b/var/spack/repos/builtin/packages/libxml2/package.py
@@ -44,8 +44,8 @@ class Libxml2(Package):
def install(self, spec, prefix):
if '+python' in spec:
site_packages_dir = os.path.join(prefix,
- 'lib/python%s/site-packages'
- % (spec['python'].version.up_to(2)))
+ 'lib/python%s/site-packages' %
+ (spec['python'].version.up_to(2)))
python_args = ["--with-python=%s" % spec['python'].prefix,
"--with-python-install-dir=%s" % site_packages_dir]
else: