From 7264bf776854ec51618d56b6ee53e73e02ef8b8d Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Fri, 10 Apr 2026 09:32:01 +1200 Subject: [PATCH] Build git without gettext to avoid missing msgfmt The pypa manylinux_2_34 base image does not provide the msgfmt binary, causing the git source build to fail. Git translations are not needed in a build container. --- imagefiles/build-and-install-git.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imagefiles/build-and-install-git.sh b/imagefiles/build-and-install-git.sh index 4d95f46..ec93a9b 100755 --- a/imagefiles/build-and-install-git.sh +++ b/imagefiles/build-and-install-git.sh @@ -33,8 +33,8 @@ tar xvzf "${GIT_ROOT}.tar.gz" --no-same-owner pushd "${GIT_ROOT}" ./configure --prefix=/usr/local --with-curl -make -j"$(nproc)" -make install +make -j"$(nproc)" NO_GETTEXT=YesPlease +make NO_GETTEXT=YesPlease install popd rm -rf "${GIT_ROOT}" "${GIT_ROOT}.tar.gz"