diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-10-27 17:55:43 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-10-27 17:55:43 +0000 |
commit | 967975bc8309e91b6335805d1141306bfffca41e (patch) | |
tree | 2e014902d1eabe0fdaf363353af8aabdcde7a9c8 /dev-tex/luatex | |
parent | (Proxy commit) Version bump (diff) | |
download | gentoo-2-967975bc8309e91b6335805d1141306bfffca41e.tar.gz gentoo-2-967975bc8309e91b6335805d1141306bfffca41e.tar.bz2 gentoo-2-967975bc8309e91b6335805d1141306bfffca41e.zip |
Set LC_ALL to C when building, same treatment as tl-core, bug #244619
(Portage version: 2.2_rc12/cvs/Linux 2.6.27.3 x86_64)
Diffstat (limited to 'dev-tex/luatex')
-rw-r--r-- | dev-tex/luatex/ChangeLog | 5 | ||||
-rw-r--r-- | dev-tex/luatex/luatex-0.30.2.ebuild | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/dev-tex/luatex/ChangeLog b/dev-tex/luatex/ChangeLog index 7f9ed7e39b0d..4ac535598ccf 100644 --- a/dev-tex/luatex/ChangeLog +++ b/dev-tex/luatex/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-tex/luatex # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.12 2008/10/26 12:27:19 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.13 2008/10/27 17:55:43 aballier Exp $ + + 27 Oct 2008; Alexis Ballier <aballier@gentoo.org> luatex-0.30.2.ebuild: + Set LC_ALL to C when building, same treatment as tl-core, bug #244619 *luatex-0.30.2 (26 Oct 2008) diff --git a/dev-tex/luatex/luatex-0.30.2.ebuild b/dev-tex/luatex/luatex-0.30.2.ebuild index 0b733451a93d..fd951c3ecef3 100644 --- a/dev-tex/luatex/luatex-0.30.2.ebuild +++ b/dev-tex/luatex/luatex-0.30.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.30.2.ebuild,v 1.1 2008/10/26 12:27:19 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.30.2.ebuild,v 1.2 2008/10/27 17:55:43 aballier Exp $ EAPI="2" @@ -34,6 +34,10 @@ src_prepare() { } src_configure() { + # Too many regexps use A-Z a-z constructs, what causes problems with locales + # that don't have the same alphabetical order than ascii. Bug #244619 + # So we set LC_ALL to C in order to avoid problems. + export LC_ALL=C tc-export CC CXX AR RANLIB export NATIVE='.' mkdir -p "${WORKDIR}/${PN}-beta-${PV}/build" |