Skip to content

Commit

Permalink
gettext: fix condition (spack#44680)
Browse files Browse the repository at this point in the history
  • Loading branch information
teaguesterling authored and AlexanderRichert-NOAA committed Aug 31, 2024
1 parent 1e09351 commit 52c7c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion var/spack/repos/builtin/packages/gettext/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 52c7c02

Please sign in to comment.