summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2022-12-23 13:57:44 -0600
committerGitHub <noreply@github.com>2022-12-23 13:57:44 -0600
commit7975e0afbce01f6ca9eb8832caefaff249dcfd18 (patch)
treeadc3b3f02c66fa829476fcd30d1f52362ac597c5 /lib
parent4a43522763ab498a628a749101ec3aa7e6d06db4 (diff)
downloadspack-7975e0afbce01f6ca9eb8832caefaff249dcfd18.tar.gz
spack-7975e0afbce01f6ca9eb8832caefaff249dcfd18.tar.bz2
spack-7975e0afbce01f6ca9eb8832caefaff249dcfd18.tar.xz
spack-7975e0afbce01f6ca9eb8832caefaff249dcfd18.zip
QMakeBuilder: fix bug introduced during multi-bs refactor (#34683)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/build_systems/qmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/qmake.py b/lib/spack/spack/build_systems/qmake.py
index f18bd9812f..ca1dfc933c 100644
--- a/lib/spack/spack/build_systems/qmake.py
+++ b/lib/spack/spack/build_systems/qmake.py
@@ -81,6 +81,6 @@ class QMakeBuilder(BaseBuilder):
def check(self):
"""Search the Makefile for a ``check:`` target and runs it if found."""
with working_dir(self.build_directory):
- self._if_make_target_execute("check")
+ self.pkg._if_make_target_execute("check")
spack.builder.run_after("build")(execute_build_time_tests)