Skip to content

Commit

Permalink
add missing colon after breaking up long line
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroge committed Jun 17, 2024
1 parent 7b0eb36 commit 92c34bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/o/openfoam.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def configure_step(self):
for dep in self.cfg.dependencies():
# CGAL >= 5.x is header-only, but when using it OpenFOAM still needs MPFR and GMP.
# It may fail to find them, so inject the right settings and paths into the "have_cgal" script.
if dep['name'] == 'CGAL' and LooseVersion(dep['version']) >= LooseVersion('5.0')
if dep['name'] == 'CGAL' and LooseVersion(dep['version']) >= LooseVersion('5.0'):
if get_software_root('MPFR'):
have_cgal_script = os.path.join(
self.builddir, self.openfoamdir, 'wmake', 'scripts', 'have_cgal'
Expand Down

0 comments on commit 92c34bd

Please sign in to comment.