Skip to content

Commit 81a6d99

Browse files
committed
BF: add locales into the buildenv docker
For some reason build https://github.com/datalad/git-annex/actions/runs/17224263724/job/48865784238 did fail with dpkg-checkbuilddeps: error: unmet build dependencies: locales dpkg-buildpackage: error: build dependencies/conflicts unsatisfied; aborting make: *** [Makefile:197: dpkg-buildpackage-S] Error 3 which may be added for standalone, so lets just add it too
1 parent 10cf008 commit 81a6d99

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • .github/workflows/tools/containers/buildenv-git-annex

.github/workflows/tools/containers/buildenv-git-annex/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ RUN set -ex; \
2727
apt-get update -qq; \
2828
export DEBIAN_FRONTEND=noninteractive; \
2929
apt-get build-dep -y -q git-annex; \
30-
# Needed additional tools
31-
apt-get install -y devscripts quilt; \
30+
# Needed additional tools etc
31+
apt-get install -y devscripts quilt locales; \
3232
# Some helper utilities just in case
3333
apt-get install -y vim wget strace time ncdu gnupg curl procps datalad pigz less tree; \
3434
apt-get clean; \

0 commit comments

Comments
 (0)