summaryrefslogtreecommitdiffstats
path: root/tasks/locales.task.sh
blob: 3afc19fa15730e0860e3a7c5243c52ea257c3feb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
locales_require_bindmounts=1

locales() {
  local ME=locales
  # fix locales
  chroot-aptinstall locales > $BROOT_LOG.$ME 2>&1 
  sed -i -e "s,^#.*\(en_US.*\)$,\1," $BROOT_BUILDROOT_PATH/etc/locale.gen
  chroot-exec locale-gen  >> $BROOT_LOG.$ME 2>&1 
  lastline=$(tail -n 1 $BROOT_LOG.$ME)
  echo "  $lastline"
}