summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStephen Sachs <stephenmsachs@gmail.com>2022-11-16 13:36:25 -0600
committerGitHub <noreply@github.com>2022-11-16 13:36:25 -0600
commit39a1f1462b0abf12dfaccd33f84142c852c4b56e (patch)
tree762f7696e5740a0896027044bfab78440218f9ba /lib
parent6de5d8e68ce3c0eea349dcbf24947572929a08bd (diff)
downloadspack-39a1f1462b0abf12dfaccd33f84142c852c4b56e.tar.gz
spack-39a1f1462b0abf12dfaccd33f84142c852c4b56e.tar.bz2
spack-39a1f1462b0abf12dfaccd33f84142c852c4b56e.tar.xz
spack-39a1f1462b0abf12dfaccd33f84142c852c4b56e.zip
SIP build system: fix "python not defined in builder" (#33906)
Co-authored-by: Stephen Sachs <stesachs@amazon.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/build_systems/sip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/sip.py b/lib/spack/spack/build_systems/sip.py
index b129ca4e0a..f70daf2724 100644
--- a/lib/spack/spack/build_systems/sip.py
+++ b/lib/spack/spack/build_systems/sip.py
@@ -157,7 +157,7 @@ class SIPBuilder(BaseBuilder):
]
)
- self.python(configure, *args)
+ self.pkg.python(configure, *args)
def configure_args(self):
"""Arguments to pass to configure."""