diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-06-27 16:53:36 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-06-27 16:53:36 +0000 |
commit | 2a091844b5d615ba401f8dceb6c9823c15c8c8a0 (patch) | |
tree | 1d5b684941411b9a9b77860e35f88a609f508176 /sci-chemistry/apbs | |
parent | ppc stable #323529 (diff) | |
download | gentoo-2-2a091844b5d615ba401f8dceb6c9823c15c8c8a0.tar.gz gentoo-2-2a091844b5d615ba401f8dceb6c9823c15c8c8a0.tar.bz2 gentoo-2-2a091844b5d615ba401f8dceb6c9823c15c8c8a0.zip |
Force LC_NUMERIC to C during test, should fix problem with decimal seperators
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/apbs')
-rw-r--r-- | sci-chemistry/apbs/ChangeLog | 6 | ||||
-rw-r--r-- | sci-chemistry/apbs/apbs-1.2.1b-r4.ebuild | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/sci-chemistry/apbs/ChangeLog b/sci-chemistry/apbs/ChangeLog index 9e511ec60ebe..872b3f6689a2 100644 --- a/sci-chemistry/apbs/ChangeLog +++ b/sci-chemistry/apbs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-chemistry/apbs # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.36 2010/06/27 14:16:21 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.37 2010/06/27 16:53:36 jlec Exp $ + + 27 Jun 2010; Justin Lecher <jlec@gentoo.org> apbs-1.2.1b-r4.ebuild: + Force LC_NUMERIC to C during test, should fix problem with decimal + seperators 27 Jun 2010; <nixnut@gentoo.org> apbs-1.2.1b-r4.ebuild: ppc stable #324613 diff --git a/sci-chemistry/apbs/apbs-1.2.1b-r4.ebuild b/sci-chemistry/apbs/apbs-1.2.1b-r4.ebuild index 87e55dbd3572..0ee0be5f25cb 100644 --- a/sci-chemistry/apbs/apbs-1.2.1b-r4.ebuild +++ b/sci-chemistry/apbs/apbs-1.2.1b-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r4.ebuild,v 1.5 2010/06/27 14:16:21 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r4.ebuild,v 1.6 2010/06/27 16:53:36 jlec Exp $ EAPI="3" @@ -91,6 +91,7 @@ src_test() { elog "tinker code make apbs to not reach the expected precission" elog "https://sourceforge.net/tracker/?func=detail&aid=3019465&group_id=148472&atid=771704" else + export LC_NUMERIC=C cd examples && make test \ || die "Tests failed" grep -q 'FAILED' "${S}"/examples/TESTRESULTS.log && die "Tests failed" |