Skip to content

Commit 77c65ca

Browse files
committed
stop using deprecated 'post_install_step' name in LLVM easyblock, use 'post_processing_step' instead
1 parent 6b5cfdf commit 77c65ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

easybuild/easyblocks/l/llvm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -945,9 +945,9 @@ def install_step(self):
945945

946946
super(EB_LLVM, self).install_step()
947947

948-
def post_install_step(self):
948+
def post_processing_step(self):
949949
"""Install python bindings."""
950-
super(EB_LLVM, self).post_install_step()
950+
super(EB_LLVM, self).post_processing_step()
951951

952952
# copy Python bindings here in post-install step so that it is not done more than once in multi_deps context
953953
if self.cfg['python_bindings']:

0 commit comments

Comments
 (0)