diff options
author | Jurek Bartuszek <jurek@gentoo.org> | 2007-06-27 01:32:58 +0000 |
---|---|---|
committer | Jurek Bartuszek <jurek@gentoo.org> | 2007-06-27 01:32:58 +0000 |
commit | 7b3bb9a416f17864a2008e112ba520e66a2b6f17 (patch) | |
tree | 389e5b509e95f4de349e3bd269c8ac968b590fbb | |
parent | Added an init script, thanks to Avuton Olrich (diff) | |
download | gentoo-2-7b3bb9a416f17864a2008e112ba520e66a2b6f17.tar.gz gentoo-2-7b3bb9a416f17864a2008e112ba520e66a2b6f17.tar.bz2 gentoo-2-7b3bb9a416f17864a2008e112ba520e66a2b6f17.zip |
mono.eclass: now exporting LC_ALL=C, added some descriptions
-rw-r--r-- | eclass/mono.eclass | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/eclass/mono.eclass b/eclass/mono.eclass index d4b3afdc4dbb..6d80badaa8e9 100644 --- a/eclass/mono.eclass +++ b/eclass/mono.eclass @@ -1,13 +1,21 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mono.eclass,v 1.6 2005/07/11 15:08:06 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mono.eclass,v 1.7 2007/06/27 01:32:58 jurek Exp $ # -# Author : foser <foser@gentoo.org> +# Original Author : foser <foser@gentoo.org> +# Purpose: provide common settings and functions for mono and dotnet related +# packages +# +# Bugs to dotnet@gentoo.org # # mono eclass -# right now only circumvents a sandbox violation by setting a mono env var # >=mono-0.92 versions using mcs -pkg:foo-sharp require shared memory, so we set the # shared dir to ${T} so that ${T}/.wapi can be used during the install process. export MONO_SHARED_DIR=${T} + +# Building mono, nant and many other dotnet packages is known to fail if LC_ALL +# variable is not set to C. To prevent this all mono related packages will be +# build with LC_ALL=C (see bugs #146424, #149817) +export LC_ALL=C |