Fix super invocation in Intel packages (#17248)
This commit is contained in:
parent
d8da1e6dbc
commit
c8e6a9e535
@ -65,7 +65,7 @@ def setup_dependent_build_environment(self, *args):
|
||||
})
|
||||
|
||||
def setup_run_environment(self, env):
|
||||
super(self, IntelMpi).setup_run_environment(env)
|
||||
super(IntelMPI, self).setup_run_environment(env)
|
||||
|
||||
for name, value in self.mpi_compiler.wrappers.items():
|
||||
env.set(name, value)
|
||||
|
@ -227,7 +227,7 @@ def setup_dependent_build_environment(self, *args):
|
||||
})
|
||||
|
||||
def setup_run_environment(self, env):
|
||||
super(self, IntelParallelStudio).setup_run_environment(env)
|
||||
super(IntelParallelStudio, self).setup_run_environment(env)
|
||||
|
||||
for name, value in self.mpi_compiler_wrappers.items():
|
||||
env.set(name, value)
|
||||
|
Loading…
Reference in New Issue
Block a user