diff options
author | Dan McGee <dan@archlinux.org> | 2007-04-16 23:58:07 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-04-16 23:58:07 -0400 |
commit | 7f183d29ac9730a76bddfc66b6e64793098ff862 (patch) | |
tree | a476af3eb51e601eb4b4f84f3c5ac5685c138712 /scripts/makepkg.in | |
parent | 7adf07bcc731c0735f9fd0e0a796da2f5b81b0f1 (diff) | |
download | pacman-7f183d29ac9730a76bddfc66b6e64793098ff862.tar.xz |
makepkg: unset LC_MESSAGES during builds
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts/makepkg.in')
-rwxr-xr-x | scripts/makepkg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.in b/scripts/makepkg.in index 831b35b8..47086ef8 100755 --- a/scripts/makepkg.in +++ b/scripts/makepkg.in @@ -917,7 +917,7 @@ else msg "$(gettext "Starting build()...")" # some applications (eg, blackbox) will not build with some languages - unset LC_ALL LANG + unset LC_ALL LC_MESSAGES LANG umask 0022 # ensure CFLAGS and CXXFLAGS are used |