summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/psi4/package.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/psi4/package.py b/var/spack/repos/builtin/packages/psi4/package.py
index 64cb85a5ee..bc2e6db011 100644
--- a/var/spack/repos/builtin/packages/psi4/package.py
+++ b/var/spack/repos/builtin/packages/psi4/package.py
@@ -51,7 +51,7 @@ class Psi4(CMakePackage):
]
@run_after('install')
- def filter_compilers(self, spec, prefix):
+ def filter_compilers(self):
"""Run after install to tell the configuration files to
use the compilers that Spack built the package with.
@@ -59,6 +59,9 @@ class Psi4(CMakePackage):
Spack's generic cxx. We want it to be bound to
whatever compiler it was built with."""
+ spec = self.spec
+ prefix = spec.prefix
+
kwargs = {'ignore_absent': True, 'backup': False, 'string': True}
cc_files = ['bin/psi4-config']