diff options
author | Caleb Tennis <caleb@gentoo.org> | 2005-04-20 12:10:58 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2005-04-20 12:10:58 +0000 |
commit | 0a5247fe58f976bc83c0d4e7aab36eacfd466af4 (patch) | |
tree | db2ff39790d25eb3f7fe71ff5386e6a94b559e0a /x11-libs | |
parent | fixed patch (diff) | |
download | gentoo-2-0a5247fe58f976bc83c0d4e7aab36eacfd466af4.tar.gz gentoo-2-0a5247fe58f976bc83c0d4e7aab36eacfd466af4.tar.bz2 gentoo-2-0a5247fe58f976bc83c0d4e7aab36eacfd466af4.zip |
Make sure we don't use foreign locales for compilation
(Portage version: 2.0.51.19)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/qt/qt-4.0.0_beta2.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/x11-libs/qt/qt-4.0.0_beta2.ebuild b/x11-libs/qt/qt-4.0.0_beta2.ebuild index 4da9897a11a0..7d5d3208202d 100644 --- a/x11-libs/qt/qt-4.0.0_beta2.ebuild +++ b/x11-libs/qt/qt-4.0.0_beta2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/qt-4.0.0_beta2.ebuild,v 1.6 2005/04/15 19:01:01 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/qt-4.0.0_beta2.ebuild,v 1.7 2005/04/20 12:10:58 caleb Exp $ inherit eutils flag-o-matic @@ -85,6 +85,10 @@ src_compile() { export PATH="${S}/bin:${PATH}" export LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" + # Fixes for 89704 + export LC_ALL=C + export LANG=C + # Let's just allow writing to these directories during Qt emerge # as it makes Qt much happier. addwrite "${QTBASE}/etc/settings" |