diff options
author | Jordan Galby <67924449+Jordan474@users.noreply.github.com> | 2024-07-03 22:40:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 13:40:55 -0700 |
commit | 0726513334618998c717f65d1d276ba385adbd1b (patch) | |
tree | 09243c9d69d19c4f9a8d879aed10c6e6657662cc | |
parent | f951f388835ea9fd992d69203e5887974f86d536 (diff) | |
download | spack-0726513334618998c717f65d1d276ba385adbd1b.tar.gz spack-0726513334618998c717f65d1d276ba385adbd1b.tar.bz2 spack-0726513334618998c717f65d1d276ba385adbd1b.tar.xz spack-0726513334618998c717f65d1d276ba385adbd1b.zip |
gettext: Fix unvendor libxml2 (#44924)
* gettext: Fix unvendor libxml2
* gettext: Fix build with external libxml2
* Revert "gettext: Fix build with external libxml2"
This reverts commit c209ad65cb5a3e95295879af8235863dd4fac618.
-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 a0f2c5b76e..25b320287e 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("@20:"): # libtextstyle/configure not present prior + if self.spec.satisfies("@0.20:"): # libtextstyle/configure not present prior filter_file( "gl_cv_libxml_force_included=yes", "gl_cv_libxml_force_included=no", |