]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
The use of AM_GNU_GETTEXT_VERSION in configure.ac instructs autopoint to
authorWolfgang Haupt <haupt.wolfgang@gmail.com>
Wed, 3 Mar 2021 15:06:37 +0000 (16:06 +0100)
committerRay Strode <halfline@gmail.com>
Tue, 9 Mar 2021 12:12:23 +0000 (12:12 +0000)
copy po/Makefile.in.in from the exact gettext version. It is fine if the
version of gettext installed on the system has the same minor version
number with the requested version, but it fails if you have a newer
version of gettext because of the mismatch between autoconf macros and
Makefile.in.in.

  *** error: gettext infrastructure mismatch: using a Makefile.in.in
  from gettext version 0.19 but the autoconf macros are from gettext
  version 0.20

Instead of specifying the exact version with AM_GNU_GETTEXT_VERSION, we
can use AM_GNU_GETTEXT_REQUIRE_VERSION to ask autopoint to simply use
the gettext version installed on the system to prevent the mismatch.

configure.ac

index 1a2314bb61a30751ebe5f7d65fc937a53f614b60..a7b92994588b2f0d346930629328528e9c76995c 100644 (file)
@@ -16,6 +16,7 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 AM_MAINTAINER_MODE([enable])
 
 AM_GNU_GETTEXT_VERSION([0.19.8])
+AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8])
 AM_GNU_GETTEXT([external])
 
 PKG_PROG_PKG_CONFIG