diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-05-20 17:12:34 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-05-20 17:12:34 +0000 |
commit | 26e8d428b050dbb50cfc8e7a32280c1e1a24670e (patch) | |
tree | 451845505c3fca895f078c39df9e138088f0d5f8 /eclass/qt4-build.eclass | |
parent | fix typo in ChangeLog (diff) | |
download | historical-26e8d428b050dbb50cfc8e7a32280c1e1a24670e.tar.gz historical-26e8d428b050dbb50cfc8e7a32280c1e1a24670e.tar.bz2 historical-26e8d428b050dbb50cfc8e7a32280c1e1a24670e.zip |
Try to avoid sandbox violation when running qhelpgenerator, bug 415517.
Diffstat (limited to 'eclass/qt4-build.eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index be72e71689fb..73b4f9439ff8 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.128 2012/05/07 21:28:01 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.129 2012/05/20 17:12:34 pesa Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -580,8 +580,9 @@ setqtenv() { QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 PLATFORM=$(qt_mkspecs_dir) - unset QMAKESPEC + + export XDG_CONFIG_HOME="${T}" } # @FUNCTION: prepare_directories |