diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-12-11 20:41:03 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-12-11 20:41:03 +0000 |
commit | 8e007d4391bdf38f483eb33cd84b3a0cd5b58127 (patch) | |
tree | 77b3f74df2d7d7431bb0ca6e1cf34d520a973394 /eclass/kde.eclass | |
parent | removed bad old version (which shuoldn't have existed, strange) and added new... (diff) | |
download | gentoo-2-8e007d4391bdf38f483eb33cd84b3a0cd5b58127.tar.gz gentoo-2-8e007d4391bdf38f483eb33cd84b3a0cd5b58127.tar.bz2 gentoo-2-8e007d4391bdf38f483eb33cd84b3a0cd5b58127.zip |
--enable-final fixes: seems many non-base kde apps don't suport it, and get compile errors abut all
sorts of illegal redefines and redeclarations. Figures. Anyway, I'm moving --enable-final to kde-dist
(and *-i18n) eclasses, the regular kde apps inheriting from kde-base don't get it. to get it, put it
into myconf the regular way or, (new) before the functions say myconf=$"myconf --enable-final" (or
anything else), this is a nice new weay of extending myconf.
over the next few days ill test all kde apps for enable-final compatibility and add the flag to those
that support it.
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r-- | eclass/kde.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index ccf37090e92b..16914ceebfcc 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.17 2001/12/08 15:36:55 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.18 2001/12/11 20:41:03 danarmak Exp $ # The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here. inherit autoconf base depend || die ECLASS=kde @@ -48,7 +48,7 @@ kde_src_compile() { case $1 in myconf) debug-print-section myconf - myconf="--host=${CHOST} --with-x --enable-mitshm --with-xinerama --prefix=/usr --with-qt-dir=${QTDIR} --enable-final" + myconf="${myconf} --host=${CHOST} --with-x --enable-mitshm --with-xinerama --prefix=/usr --with-qt-dir=${QTDIR}" use qtmt && myconf="$myconf --enable-mt" use objprelink && myconf="$myconf --enable-objprelink" || myconf="$myconf --disable-objprelink" set-kdedir $kde_version |