On 2026-05-23 Santiago Vila <[email protected]> wrote: > Package: src:p11-kit > Version: 0.26.2-2 [...] > During a rebuild of all packages in unstable using gettext 1.0 > (yet to be uploaded for Debian), this package failed to build. [...] > autoreconf: Entering directory '.' > autoreconf: running: autopoint --force > autopoint: *** found more than one invocation of > AM_GNU_GETTEXT_REQUIRE_VERSION > autopoint: *** Stop. > autoreconf: error: autopoint failed with exit status: 1 > dh_autoreconf: error: autoreconf -f -i -v returned exit code 1 > make: *** [debian/rules:28: binary] Error 255 > dpkg-buildpackage: error: debian/rules binary subprocess failed with exit > status 2 > --------------------------------------------------------------------------------
The triggering code in p11-kit is AM_GNU_GETTEXT_VERSION([0.19.8]) m4_ifdef([AM_GNU_GETTEXT_REQUIRE_VERSION],[ AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8]) ]) i.e. autopoint throws an error about duplicate AM_GNU_GETTEXT_REQUIRE_VERSION but it seems to be a false alarm. This can be probanly worked around excatly like gnutls did in https://gitlab.com/gnutls/gnutls/-/commit/38e5fb6613666df96cc5851ab32d4db1313ffd02 with quoting: AM_GNU_GETTEXT_VERSION([0.19]) -m4_ifdef([AM_GNU_GETTEXT_REQUIRE_VERSION],[ +m4_ifdef([AM_GNU_GET][TEXT_REQUIRE_VERSION],[ but isn't this an autopoint bug? cu Andreas -- "You people are noisy," Nia said. I made the gesture of agreement.

