diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2011-10-31 12:02:46 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-10-31 12:02:46 +0100 |
commit | fbdcf6e309754eef590e926c139cf4fc375c492f (patch) | |
tree | 1206c2ab2feb261c4228d40aceea7ec23d5e25b8 | |
parent | 01f5cdf33de5ed92a8bb3c2026408ce7fc640be9 (diff) | |
download | devtools32-fbdcf6e309754eef590e926c139cf4fc375c492f.tar.xz |
makechrootpkg: Do not export LANG
This is done by /etc/profile.d/locale.sh. By this we also ensure compatibility with systemd.
-rw-r--r-- | makechrootpkg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in index d182c46..ba893bf 100644 --- a/makechrootpkg.in +++ b/makechrootpkg.in @@ -261,7 +261,7 @@ EOF 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" +echo 'LANG=C' > "$copydir/etc/locale.conf" # This is a little gross, but this way the script is recreated every time in the # working copy |