summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald van Dijk <truedfx@gentoo.org>2006-05-06 19:06:43 +0000
committerHarald van Dijk <truedfx@gentoo.org>2006-05-06 19:06:43 +0000
commitb5f1e7c416d45fc9739b1cac800e83ed8118d3fc (patch)
tree279241a7616bd3f224f3da9c89f262892937db51 /www-client
parentAdd an RDEPEND for util-linux (it seems one could actually build a (diff)
downloadgentoo-2-b5f1e7c416d45fc9739b1cac800e83ed8118d3fc.tar.gz
gentoo-2-b5f1e7c416d45fc9739b1cac800e83ed8118d3fc.tar.bz2
gentoo-2-b5f1e7c416d45fc9739b1cac800e83ed8118d3fc.zip
Make sure default language gets set
(Portage version: 2.1_pre10-r3)
Diffstat (limited to 'www-client')
-rw-r--r--www-client/mozilla-firefox/ChangeLog6
-rw-r--r--www-client/mozilla-firefox/mozilla-firefox-1.5.0.3.ebuild6
2 files changed, 8 insertions, 4 deletions
diff --git a/www-client/mozilla-firefox/ChangeLog b/www-client/mozilla-firefox/ChangeLog
index 2965ad0d53c2..2348a4c8c189 100644
--- a/www-client/mozilla-firefox/ChangeLog
+++ b/www-client/mozilla-firefox/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-client/mozilla-firefox
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/ChangeLog,v 1.150 2006/05/03 14:14:58 pylon Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/ChangeLog,v 1.151 2006/05/06 19:06:43 truedfx Exp $
+
+ 06 May 2006; Harald van Dijk <truedfx@gentoo.org>
+ mozilla-firefox-1.5.0.3.ebuild:
+ Make sure default language gets set based on LINGUAS
03 May 2006; Lars Weiler <pylon@gentoo.org>
mozilla-firefox-1.5.0.3.ebuild:
diff --git a/www-client/mozilla-firefox/mozilla-firefox-1.5.0.3.ebuild b/www-client/mozilla-firefox/mozilla-firefox-1.5.0.3.ebuild
index a68ecc0c856c..bea8840d2e53 100644
--- a/www-client/mozilla-firefox/mozilla-firefox-1.5.0.3.ebuild
+++ b/www-client/mozilla-firefox/mozilla-firefox-1.5.0.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/mozilla-firefox-1.5.0.3.ebuild,v 1.3 2006/05/03 14:14:58 pylon Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/mozilla-firefox-1.5.0.3.ebuild,v 1.4 2006/05/06 19:06:43 truedfx Exp $
unset ALLOWED_FLAGS # stupid extra-functions.sh ... bug 49179
@@ -53,14 +53,14 @@ linguas() {
for LANG in ${LINGUAS}; do
if hasq ${LANG} ${LANGS//-/_} en; then
hasq ${LANG//_/-} ${linguas} || \
- linguas="${linguas} ${LANG//_/-}"
+ linguas="${linguas:+"${linguas} "}${LANG//_/-}"
continue
else
local SLANG
for SLANG in ${SHORTLANGS}; do
if [[ ${LANG} == ${SLANG%%-*} ]]; then
hasq ${SLANG} ${linguas} || \
- linguas="${linguas} ${SLANG}"
+ linguas="${linguas:+"${linguas} "}${SLANG}"
continue 2
fi
done