Skip to content

Commit

Permalink
skip check when not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
branfosj committed Nov 25, 2023
1 parent f148ffb commit ec6ece6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -3638,7 +3638,7 @@ def xs2str(xs):
self.log.warning("Check for required/banned linked shared libraries failed!")
self.sanity_check_fail_msgs.append(linked_shared_lib_fails)

if self.toolchain.name in ['GCCcore']:
if self.toolchain.name in ['GCCcore'] and not self.cfg._config['skip_mod_files_check']:
mod_files_found = self.sanity_check_mod_files()
if mod_files_found:
if build_option('fail_on_mod_files'):
Expand Down

0 comments on commit ec6ece6

Please sign in to comment.