diff options
author | Judd Vinet <judd@archlinux.org> | 2005-12-09 18:49:34 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2005-12-09 18:49:34 +0000 |
commit | 74d389b7af53a2bb1651b96fc42256e70946ecb3 (patch) | |
tree | f0e20b7288e21a9c6fc03cb666a1cb12fa586717 /scripts/makepkg | |
parent | 7f240a92215f4082ccf4ce3d1b1c966c60a5c396 (diff) | |
download | pacman-74d389b7af53a2bb1651b96fc42256e70946ecb3.tar.xz |
Applied unset_lcall_lang.diff -- unset LANG/LC_ALL before building packages
Diffstat (limited to 'scripts/makepkg')
-rwxr-xr-x | scripts/makepkg | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/makepkg b/scripts/makepkg index 989e6375..02e7d895 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -335,6 +335,8 @@ fi unset pkgname pkgver pkgrel pkgdesc url license groups provides md5sums force unset replaces depends conflicts backup source install build makedepends +# some applications (eg, blackbox) will not build with some languages +unset LC_ALL LANG umask 0022 if [ ! -f $BUILDSCRIPT ]; then |