diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-27 23:04:00 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-27 23:04:00 +0000 |
commit | 81ceb1098684e3037b7901676a02b10dc2ca64ae (patch) | |
tree | c2aaa911955840ea78911a5325c2d193707bc28d /kde-base/kde-i18n/kde-i18n-3.5.5.ebuild | |
parent | Build static library too, do tests with static lua (diff) | |
download | gentoo-2-81ceb1098684e3037b7901676a02b10dc2ca64ae.tar.gz gentoo-2-81ceb1098684e3037b7901676a02b10dc2ca64ae.tar.bz2 gentoo-2-81ceb1098684e3037b7901676a02b10dc2ca64ae.zip |
Don't die if LINGUAS is set to just 'en'.
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'kde-base/kde-i18n/kde-i18n-3.5.5.ebuild')
-rw-r--r-- | kde-base/kde-i18n/kde-i18n-3.5.5.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kde-base/kde-i18n/kde-i18n-3.5.5.ebuild b/kde-base/kde-i18n/kde-i18n-3.5.5.ebuild index 4593b6e43c78..af3750b6aa95 100644 --- a/kde-base/kde-i18n/kde-i18n-3.5.5.ebuild +++ b/kde-base/kde-i18n/kde-i18n-3.5.5.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/kde-base/kde-i18n/kde-i18n-3.5.5.ebuild,v 1.9 2006/11/25 16:50:30 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-i18n/kde-i18n-3.5.5.ebuild,v 1.10 2006/11/27 23:04:00 flameeyes Exp $ inherit kde @@ -24,7 +24,7 @@ for X in ${LANGS} ; do done src_unpack() { - if [ -z "${A}" ]; then + if [ -z "${A}" && LINGUAS != "en"]; then echo eerror "You must set the LINGUAS environment variable to a list of valid" eerror "language codes, one for each language you would like to install." |