We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 768bd0a commit 0e126d2Copy full SHA for 0e126d2
easybuild/framework/easyblock.py
@@ -2998,7 +2998,9 @@ def sanity_check_rpath(self, rpath_dirs=None):
2998
out = get_linked_libs_raw(path)
2999
3000
if out is None:
3001
- self.log.debug("%s is not dynamically linked, so skipping it in RPATH sanity check", path)
+ msg = "Failed to determine dynamically linked libraries for %s, "
3002
+ msg += "so skipping it in RPATH sanity check"
3003
+ self.log.debug(msg, path)
3004
else:
3005
# check whether all required libraries are found via 'ldd'
3006
if not_found_regex.search(out):
0 commit comments