diff options
author | Kevin F. Quinn <kevquinn@gentoo.org> | 2006-03-07 19:24:23 +0000 |
---|---|---|
committer | Kevin F. Quinn <kevquinn@gentoo.org> | 2006-03-07 19:24:23 +0000 |
commit | e03c5c948c5b9841686a5ce8720d112cffd33114 (patch) | |
tree | 0a4798409da83397bed996195613164b312d1f2f /app-text/hunspell/hunspell-1.1.4.ebuild | |
parent | Update dependencies based on the recent work on net-im/kopete. Fix modular X ... (diff) | |
download | gentoo-2-e03c5c948c5b9841686a5ce8720d112cffd33114.tar.gz gentoo-2-e03c5c948c5b9841686a5ce8720d112cffd33114.tar.bz2 gentoo-2-e03c5c948c5b9841686a5ce8720d112cffd33114.zip |
Force LC_ALL to empty when running tests; bug #125375
(Portage version: 2.0.54)
Diffstat (limited to 'app-text/hunspell/hunspell-1.1.4.ebuild')
-rw-r--r-- | app-text/hunspell/hunspell-1.1.4.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app-text/hunspell/hunspell-1.1.4.ebuild b/app-text/hunspell/hunspell-1.1.4.ebuild index b1ae62807f52..98ee57288bd8 100644 --- a/app-text/hunspell/hunspell-1.1.4.ebuild +++ b/app-text/hunspell/hunspell-1.1.4.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/app-text/hunspell/hunspell-1.1.4.ebuild,v 1.1 2006/03/06 17:29:08 kevquinn Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/hunspell-1.1.4.ebuild,v 1.2 2006/03/07 19:24:23 kevquinn Exp $ inherit eutils multilib @@ -41,6 +41,13 @@ src_compile() { emake || die "emake failed" } +src_test() { + # One of the tests doesn't like LC_ALL being set to encodings + # capable of expressing beta-S, so we simply clear it. + # bug #125375 + LC_ALL= make check +} + src_install() { emake DESTDIR=${D} install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README THANKS TODO |