opencascade: typo in True (#38487)

Not sure why flake8 didn't catch this as an undefined name, e.g. https://www.flake8rules.com/rules/F823.html.
This commit is contained in:
Wouter Deconinck 2023-06-22 01:39:20 -05:00 committed by GitHub
parent 53eb6c46db
commit 6e47f1645f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -182,7 +182,7 @@ def use_3rdparty(feature, spack_variant=None, depends_on=None, extra_dirs=[]):
args.append("-DBUILD_DOC_Overview=OFF")
# Always build the foundation classes
args.append(self.define("BUILD_MODULE_FoundationClasses", true))
args.append(self.define("BUILD_MODULE_FoundationClasses", True))
# Specify which modules to build
for module in [
"ApplicationFramework",