Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -2954,11 +2954,11 @@ def prepare_step(self, start_dir=True, load_tc_deps_modules=True):
# $ORIGIN will be resolved by the loader to be the full path to the executable or shared object
# see also https://linux.die.net/man/8/ld-linux;
self.rpath_include_dirs.extend([
os.path.join(self.installdir, 'lib'),
os.path.join(self.installdir, 'lib64'),
'$ORIGIN',
'$ORIGIN/../lib',
'$ORIGIN/../lib64',
os.path.join(self.installdir, 'lib'),
os.path.join(self.installdir, 'lib64'),
])

# Location to store RPATH wrappers
Expand Down