diff options
author | Caleb Tennis <caleb@gentoo.org> | 2004-08-30 13:30:22 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2004-08-30 13:30:22 +0000 |
commit | d5c9e85c3330ef74b592dcfee0d21be3681e649d (patch) | |
tree | 825c75e9b067ad84c1b579b76edd4989a9e07301 /eclass | |
parent | Added to ~ppc (diff) | |
download | historical-d5c9e85c3330ef74b592dcfee0d21be3681e649d.tar.gz historical-d5c9e85c3330ef74b592dcfee0d21be3681e649d.tar.bz2 historical-d5c9e85c3330ef74b592dcfee0d21be3681e649d.zip |
Don't set QTDIR if it's already set
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde-functions.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass index dc44741d7bab..dea1eda12232 100644 --- a/eclass/kde-functions.eclass +++ b/eclass/kde-functions.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.71 2004/06/25 00:39:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.72 2004/08/30 13:30:22 caleb Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -243,7 +243,11 @@ set-qtdir() { done IFS=$IFSBACKUP - export QTDIR="/usr/qt/$QTMAJORVER" + # Don't se the QTDIR if it's already set + # See bug #61967 + if [ ! $QTDIR ]; then + export QTDIR="/usr/qt/$QTMAJORVER" + fi # i'm putting this here so that the maximum amount of qt/kde apps gets it -- danarmak # if $QTDIR/etc/settings/qtrc file exists, the qt build tools try to create |