fix build on debian

master
Marc Wäckerlin 8 years ago
parent d45845fa0e
commit 7c024f07bd
  1. 6
      ChangeLog
  2. 6
      build-in-docker.sh

@ -1,3 +1,9 @@
2016-12-09 15:51
* [r461] ChangeLog:
fix build issues - utf-8 gpg uid still not supported for most rpm
based distros
2016-12-09 12:12
* [r460] ChangeLog, ax_init_standard_project.m4, bootstrap.sh,

@ -216,8 +216,10 @@ if ! docker exec ${DOCKER_ID} getent passwd $(id -u) > /dev/null 2>&1; then
fi
case $mode in
(deb|apt)
docker exec ${DOCKER_ID} locale-gen ${LANG}
docker exec ${DOCKER_ID} update-locale LANG=${LANG}
if [[ "${img}" =~ "ubuntu" ]]; then
docker exec ${DOCKER_ID} locale-gen ${LANG}
docker exec ${DOCKER_ID} update-locale LANG=${LANG}
fi
OPTIONS='-o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confnew -y --force-yes --no-install-suggests --no-install-recommends'
for f in 'libpam-systemd:amd64' 'policykit*' 'colord'; do
docker exec ${DOCKER_ID} bash -c "echo 'Package: $f' >> /etc/apt/preferences"

Loading…
Cancel
Save