diff options
author | Fabian Groffen <grobian@gentoo.org> | 2011-02-06 21:09:29 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2011-02-06 21:09:29 +0000 |
commit | 0948ae41ad37512bc966a2cb6dced6c23d983c42 (patch) | |
tree | ca688f538aaa51cc7704e0491369e7cbc4472b99 /app-text | |
parent | Update homepage URL, as suggested by Alexey Portnov in bug #346649. (diff) | |
download | gentoo-2-0948ae41ad37512bc966a2cb6dced6c23d983c42.tar.gz gentoo-2-0948ae41ad37512bc966a2cb6dced6c23d983c42.tar.bz2 gentoo-2-0948ae41ad37512bc966a2cb6dced6c23d983c42.zip |
Check for en_GB before resorting to Australian, for what it's worth
(Portage version: 2.2.01.17693-prefix/cvs/SunOS i386)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/vilistextum/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/vilistextum/vilistextum-2.6.9.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-text/vilistextum/ChangeLog b/app-text/vilistextum/ChangeLog index 4ea406f5de1b..8b1bc3fc4e5d 100644 --- a/app-text/vilistextum/ChangeLog +++ b/app-text/vilistextum/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/vilistextum # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.33 2011/02/06 14:54:09 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.34 2011/02/06 21:09:29 grobian Exp $ + + 06 Feb 2011; Fabian Groffen <grobian@gentoo.org> vilistextum-2.6.9.ebuild: + Check for en_GB before resorting to Australian, for what it's worth 06 Feb 2011; Fabian Groffen <grobian@gentoo.org> vilistextum-2.6.9.ebuild: Search for an UTF-8 locale for people that lack en_US.UTF-8, such that we diff --git a/app-text/vilistextum/vilistextum-2.6.9.ebuild b/app-text/vilistextum/vilistextum-2.6.9.ebuild index 51e03ecfb7ba..74c818dffd1c 100644 --- a/app-text/vilistextum/vilistextum-2.6.9.ebuild +++ b/app-text/vilistextum/vilistextum-2.6.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9.ebuild,v 1.10 2011/02/06 14:54:09 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9.ebuild,v 1.11 2011/02/06 21:09:29 grobian Exp $ EAPI="2" @@ -39,7 +39,7 @@ find_locale() { # available, in which case it is better not to hardcode to use it l=$(get_locale en_US) if [[ -z ${l} ]] ; then - for t in "en_.*" ".*" ; do + for t in "en_GB" "en_.*" ".*" ; do l=$(get_locale ${t}) if [[ -n ${l} ]] ; then l=${l%%$'\n'*} |