Skip to content

Commit

Permalink
add back raising of an error if wxWidgets is not a dependency for Par…
Browse files Browse the repository at this point in the history
…aver
  • Loading branch information
boegel committed Dec 18, 2024
1 parent b875ce7 commit ee1ee14
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions easybuild/easyblocks/p/paraver.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ def configure_step(self):
wxwidgets = get_software_root('wxWidgets')
if wxwidgets:
wx_config = os.path.join(wxwidgets, 'bin', 'wx-config')
else:
raise EasyBuildError("wxWidgets is not available as a dependency")

# determine value to pass to --with-wxpropgrid (library name)
wxpropgrid = None
Expand Down

0 comments on commit ee1ee14

Please sign in to comment.