From 8d0fc3e6390aabd684eac2b35a23dc467f16de28 Mon Sep 17 00:00:00 2001 From: Teague Sterling Date: Wed, 12 Jun 2024 12:24:42 -0700 Subject: [PATCH] gettext: fix condition (#44680) --- var/spack/repos/builtin/packages/gettext/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/gettext/package.py b/var/spack/repos/builtin/packages/gettext/package.py index d546cd97624..a0f2c5b76e3 100644 --- a/var/spack/repos/builtin/packages/gettext/package.py +++ b/var/spack/repos/builtin/packages/gettext/package.py @@ -80,7 +80,7 @@ def patch(self): # 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",