Skip to content

Commit 571b94d

Browse files
committed
Move post install commands after lib64 symlinking
1 parent 7dbba36 commit 571b94d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

easybuild/framework/easyblock.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3019,12 +3019,6 @@ def post_install_step(self):
30193019
- run post install commands if any were specified
30203020
"""
30213021

3022-
self.run_post_install_commands()
3023-
self.apply_post_install_patches()
3024-
self.print_post_install_messages()
3025-
3026-
self.fix_shebang()
3027-
30283022
lib_dir = os.path.join(self.installdir, 'lib')
30293023
lib64_dir = os.path.join(self.installdir, 'lib64')
30303024

@@ -3045,6 +3039,12 @@ def post_install_step(self):
30453039
# create *relative* 'lib' symlink to 'lib64';
30463040
symlink('lib64', lib_dir, use_abspath_source=False)
30473041

3042+
self.run_post_install_commands()
3043+
self.apply_post_install_patches()
3044+
self.print_post_install_messages()
3045+
3046+
self.fix_shebang()
3047+
30483048
def sanity_check_step(self, *args, **kwargs):
30493049
"""
30503050
Do a sanity check on the installation

0 commit comments

Comments
 (0)