summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-12-01 05:06:21 +0000
committerDan Armak <danarmak@gentoo.org>2002-12-01 05:06:21 +0000
commit6684e282b567e3c685a6b4d987e29a747ea6b12d (patch)
tree4560284c3f544e1be0d8c55833cb28fe4c7e2016 /eclass
parentremoved ${PN} from install (diff)
downloadhistorical-6684e282b567e3c685a6b4d987e29a747ea6b12d.tar.gz
historical-6684e282b567e3c685a6b4d987e29a747ea6b12d.tar.bz2
historical-6684e282b567e3c685a6b4d987e29a747ea6b12d.zip
allow writing to all of /usr/qt/3/etc/settings, after all.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/kde-functions.eclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass
index c4661fedf25b..072c2f6646f0 100644
--- a/eclass/kde-functions.eclass
+++ b/eclass/kde-functions.eclass
@@ -1,7 +1,7 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author Dan Armak <danarmak@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.46 2002/11/27 21:31:42 hannes Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.47 2002/12/01 05:06:21 danarmak Exp $
# This contains everything except things that modify ebuild variables and functions (e.g. $P, src_compile() etc.)
ECLASS=kde-functions
@@ -229,6 +229,10 @@ set-qtdir() {
export QTDIR="/usr/qt/$QTMAJORVER"
+ # 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
+ # a .qtrc.lock file in that directory. It's easiest to allow them to do so.
+ [ -d "$QTDIR/etc/settings" ] && addwrite "$QTDIR/etc/settings"
}