summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-10-18 08:09:06 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-10-18 08:09:06 +0000
commit59270a75eba32a472159ce88c8c56ac968b4936f (patch)
treefd3cb6e253768592467902ffd2a2f6b8567af6ad /app-text/texlive-core
parentVersion bump. (diff)
downloadgentoo-2-59270a75eba32a472159ce88c8c56ac968b4936f.tar.gz
gentoo-2-59270a75eba32a472159ce88c8c56ac968b4936f.tar.bz2
gentoo-2-59270a75eba32a472159ce88c8c56ac968b4936f.zip
Set LC_ALL to C in order to avoid problems with locales that don't have the same alphabetical order as ascii. Bug #242430
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.6 x86_64)
Diffstat (limited to 'app-text/texlive-core')
-rw-r--r--app-text/texlive-core/ChangeLog7
-rw-r--r--app-text/texlive-core/texlive-core-2008-r1.ebuild6
2 files changed, 11 insertions, 2 deletions
diff --git a/app-text/texlive-core/ChangeLog b/app-text/texlive-core/ChangeLog
index 57eeefa09193..25f2c0dc6842 100644
--- a/app-text/texlive-core/ChangeLog
+++ b/app-text/texlive-core/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/texlive-core
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.78 2008/10/18 07:48:43 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.79 2008/10/18 08:09:06 aballier Exp $
+
+ 18 Oct 2008; Alexis Ballier <aballier@gentoo.org>
+ texlive-core-2008-r1.ebuild:
+ Set LC_ALL to C in order to avoid problems with locales that don't have
+ the same alphabetical order as ascii. Bug #242430
18 Oct 2008; Alexis Ballier <aballier@gentoo.org>
texlive-core-2008-r1.ebuild:
diff --git a/app-text/texlive-core/texlive-core-2008-r1.ebuild b/app-text/texlive-core/texlive-core-2008-r1.ebuild
index f2c50faebf32..750e6e1be209 100644
--- a/app-text/texlive-core/texlive-core-2008-r1.ebuild
+++ b/app-text/texlive-core/texlive-core-2008-r1.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/app-text/texlive-core/texlive-core-2008-r1.ebuild,v 1.3 2008/10/18 07:48:43 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2008-r1.ebuild,v 1.4 2008/10/18 08:09:06 aballier Exp $
EAPI=1
@@ -84,6 +84,10 @@ src_unpack() {
}
src_compile() {
+ # 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 #242430
+ # So we set LC_ALL to C in order to avoid problems.
+ export LC_ALL=C
tc-export CC CXX AR
econf \
--bindir=/usr/bin \