mdspan: fix typo in satisfies condition (#46340)

This commit is contained in:
Wouter Deconinck
2024-09-12 06:37:57 -05:00
committed by GitHub
parent 68df483bc6
commit 2623b9727f

View File

@@ -30,7 +30,7 @@ def cmake_args(self):
if self.spec.satisfies("+tests"):
args.append("-DMDSPAN_ENABLE_TESTS=ON")
args.append("-DMDSPAN_USE_SYSTEM_GTEST=ON")
if self.spec.satisfies("+bencmarks"):
if self.spec.satisfies("+benchmarks"):
args.append("-DMDSPAN_ENABLE_BENCHMARKS=ON")
if self.spec.satisfies("+examples"):
args.append("-DMDSPAN_ENABLE_EXAMPLES=ON")