exempi: fix typo in "satisfies" condition (#29233)

This commit is contained in:
Dom Heinzeller
2022-03-04 02:13:07 -07:00
committed by GitHub
parent 7d66779c06
commit f931067bf2

View File

@@ -37,7 +37,7 @@ def patch(self):
def configure_args(self): def configure_args(self):
args = ['--with-boost={0}'.format(self.spec['boost'].prefix)] args = ['--with-boost={0}'.format(self.spec['boost'].prefix)]
if self.spec.satisfies('polatform=darwin'): if self.spec.satisfies('platform=darwin'):
args += ['--with-darwinports', '--with-fink'] args += ['--with-darwinports', '--with-fink']
return args return args