diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2008-04-06 14:28:23 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2008-04-06 14:28:23 +0000 |
commit | d0a76ff0f0f49255260db1ecb5b170f6cafa77f6 (patch) | |
tree | 7d98a2e2098549e50b1c74e4269a1c44fbd35eed /eclass/kde.eclass | |
parent | x86 stable, bug #216149, remove old (diff) | |
download | gentoo-2-d0a76ff0f0f49255260db1ecb5b170f6cafa77f6.tar.gz gentoo-2-d0a76ff0f0f49255260db1ecb5b170f6cafa77f6.tar.bz2 gentoo-2-d0a76ff0f0f49255260db1ecb5b170f6cafa77f6.zip |
Removed obsolete unsermake support and unconditionally enabled --disable-dependency-tracking.
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r-- | eclass/kde.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 87d5cb552e36..5e6bf2035524 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.207 2008/03/18 17:53:49 zlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.208 2008/04/06 14:28:23 philantrop Exp $ # @ECLASS: kde.eclass # @MAINTAINER: @@ -230,7 +230,6 @@ kde_src_compile() { # things that should access the real homedir [[ -d "$REALHOME/.ccache" ]] && ln -sf "$REALHOME/.ccache" "$HOME/" - [[ -n "$UNSERMAKE" ]] && addwrite "/usr/kde/unsermake" while [[ "$1" ]]; do @@ -239,7 +238,7 @@ kde_src_compile() { debug-print-section myconf myconf="$myconf --with-x --enable-mitshm $(use_with xinerama) --with-qt-dir=${QTDIR} --enable-mt --with-qt-libraries=${QTDIR}/$(get_libdir)" # calculate dependencies separately from compiling, enables ccache to work on kde compiles - [[ -z "$UNSERMAKE" ]] && myconf="$myconf --disable-dependency-tracking" + myconf="$myconf --disable-dependency-tracking" if use debug ; then myconf="$myconf --enable-debug=full --with-debug" else @@ -266,7 +265,7 @@ kde_src_compile() { # rebuild configure script, etc # This can happen with e.g. a cvs snapshot - if [[ ! -f "./configure" ]] || [[ -n "$UNSERMAKE" ]]; then + if [[ ! -f "./configure" ]]; then # This is needed to fix building with autoconf 2.60. # Many thanks to who preferred such a stupid check rather # than a working arithmetic comparison. |