octopus+cgal: requires boost: add --with-boost=spec["boost"].prefix (#36472)

This commit is contained in:
Ashwin Kumar Karnad
2023-03-30 17:37:11 +02:00
committed by GitHub
parent 6c5d3299fe
commit 906a8c56af

View File

@@ -179,7 +179,10 @@ def configure_args(self):
)
if "+cgal" in spec:
# Boost is a dependency of CGAL, and is not picked up by the configure script
# unless specified explicitly with `--with-boost` option.
args.append("--with-cgal-prefix=%s" % spec["cgal"].prefix)
args.append("--with-boost=%s" % spec["boost"].prefix)
if "+likwid" in spec:
args.append("--with-likwid-prefix=%s" % spec["likwid"].prefix)