diff options
author | Teague Sterling <teaguesterling@users.noreply.github.com> | 2024-06-12 12:24:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-12 13:24:42 -0600 |
commit | 8d0fc3e6390aabd684eac2b35a23dc467f16de28 (patch) | |
tree | f23a3b978650291271dad97fa18468b5ebb0ce5b | |
parent | 3736da3f8918959652976ffaa71122a680079b5b (diff) | |
download | spack-8d0fc3e6390aabd684eac2b35a23dc467f16de28.tar.gz spack-8d0fc3e6390aabd684eac2b35a23dc467f16de28.tar.bz2 spack-8d0fc3e6390aabd684eac2b35a23dc467f16de28.tar.xz spack-8d0fc3e6390aabd684eac2b35a23dc467f16de28.zip |
gettext: fix condition (#44680)
-rw-r--r-- | var/spack/repos/builtin/packages/gettext/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gettext/package.py b/var/spack/repos/builtin/packages/gettext/package.py index d546cd9762..a0f2c5b76e 100644 --- a/var/spack/repos/builtin/packages/gettext/package.py +++ b/var/spack/repos/builtin/packages/gettext/package.py @@ -80,7 +80,7 @@ class Gettext(AutotoolsPackage, GNUMirrorPackage): # From the configure script: "we don't want to use an external libxml, because its # dependencies and their dynamic relocations have an impact on the startup time", well, # *we* do. - if self.spec.satisfies("@:19"): # libtextstyle/configure not present + if self.spec.satisfies("@20:"): # libtextstyle/configure not present prior filter_file( "gl_cv_libxml_force_included=yes", "gl_cv_libxml_force_included=no", |