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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,7 +179,10 @@ def configure_args(self):
) )
if "+cgal" in spec: 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-cgal-prefix=%s" % spec["cgal"].prefix)
args.append("--with-boost=%s" % spec["boost"].prefix)
if "+likwid" in spec: if "+likwid" in spec:
args.append("--with-likwid-prefix=%s" % spec["likwid"].prefix) args.append("--with-likwid-prefix=%s" % spec["likwid"].prefix)