diff options
author | Dom Heinzeller <dom.heinzeller@icloud.com> | 2022-03-04 02:13:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 10:13:07 +0100 |
commit | f931067bf2a6dfed6d1ad965f95cf57424c6b44a (patch) | |
tree | 49f9a8757293cb12dbf8c72b51a1d3163c5943ff | |
parent | 7d66779c06129c4911998833fc197cd81c3e1525 (diff) | |
download | spack-f931067bf2a6dfed6d1ad965f95cf57424c6b44a.tar.gz spack-f931067bf2a6dfed6d1ad965f95cf57424c6b44a.tar.bz2 spack-f931067bf2a6dfed6d1ad965f95cf57424c6b44a.tar.xz spack-f931067bf2a6dfed6d1ad965f95cf57424c6b44a.zip |
exempi: fix typo in "satisfies" condition (#29233)
-rw-r--r-- | var/spack/repos/builtin/packages/exempi/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/exempi/package.py b/var/spack/repos/builtin/packages/exempi/package.py index c3eecd3969..04d81f79f3 100644 --- a/var/spack/repos/builtin/packages/exempi/package.py +++ b/var/spack/repos/builtin/packages/exempi/package.py @@ -37,7 +37,7 @@ class Exempi(AutotoolsPackage): 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 |