Skip to content

Commit

Permalink
skip rpath sanity check for mcr
Browse files Browse the repository at this point in the history
  • Loading branch information
pescobar committed Dec 1, 2016
1 parent b8a2e54 commit 0e59cf8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions easybuild/easyblocks/m/mcr.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ def sanity_check_step(self):
'dirs': [os.path.join(self.subdir, x, 'glnxa64') for x in ['runtime', 'bin', 'sys/os']],
}
super(EB_MCR, self).sanity_check_step(custom_paths=custom_paths)

def sanity_check_rpath(self):
"""Skip the rpath sanity check, this is binary software"""
self.log.info("RPATH sanity check is skipped when using %s easyblock",
self.__class__.__name__)

def make_module_extra(self):
"""Extend PATH and set proper _JAVA_OPTIONS (e.g., -Xmx)."""
Expand Down

0 comments on commit 0e59cf8

Please sign in to comment.