Hello,
someone on the Manjaro forums https://forum.manjaro.org/t/aur-package-cpio-git-fails-to-upgrade/47775 got an error when compiling cpio from the git sources. *** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.19 but the autoconf macros are from gettext version 0.20 make[2]: *** [Makefile:232: stamp-po] Fehler 1 I am on Arch Linux and got exactly the same error. I solved it by change the gettext version number in configure.ac from 0.19 to 0.20. diff --git a/configure.ac b/configure.ac index 0a35e4c..6c587a0 100644 --- a/configure.ac +++ b/configure.ac @@ -84,7 +84,7 @@ AC_CHECK_DECLS([errno, getpwnam, getgrnam, getgrgid, strdup, strerror, getenv, a # Gettext. AM_ICONV AM_GNU_GETTEXT([external], [need-formatstring-macros]) -AM_GNU_GETTEXT_VERSION(0.19) +AM_GNU_GETTEXT_VERSION(0.20) LIBS="$LIBS $LIB_CLOCK_GETTIME" Best regards Stefan Husmann