Make openmpi package defn more robust (#4183)
Make openmpi handle bad ibv_devices return statuses without bailing out completely. See #4162 for background.
This commit is contained in:
parent
692a100caa
commit
ba32f0d3a2
1 changed files with 2 additions and 0 deletions
|
@ -48,6 +48,8 @@ def _verbs_dir():
|
|||
return path
|
||||
except TypeError:
|
||||
return None
|
||||
except ProcessError:
|
||||
return None
|
||||
|
||||
|
||||
class Openmpi(AutotoolsPackage):
|
||||
|
|
Loading…
Reference in a new issue