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

View File

@ -37,7 +37,7 @@ def patch(self):
def configure_args(self):
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']
return args