makechrootpkg: Set the C locale system wide

makepkg sources /etc/profile before calling build(). This will change the
locale from C to en_US.UTF8.
This commit is contained in:
Pierre Schmitz 2011-10-29 13:05:09 +02:00
parent 3a684f667b
commit 521c4ceec3
1 changed files with 3 additions and 0 deletions

View File

@ -250,6 +250,9 @@ chown -R nobody "$copydir"/{build,pkgdest,srcdest}
echo 'nobody ALL = NOPASSWD: /usr/bin/pacman' > "$copydir/etc/sudoers.d/nobody-pacman"
chmod 440 "$copydir/etc/sudoers.d/nobody-pacman"
# Set this system wide as makepkg will source /etc/profile before calling build()
echo 'export LANG=C' > "$copydir/etc/locale.conf"
# This is a little gross, but this way the script is recreated every time in the
# working copy
cat >"$copydir/chrootbuild" <<EOF