diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-03 19:10:49 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-03 19:10:49 +0000 |
commit | f86a76a2110d50f41f4bdb0315751ba75091542b (patch) | |
tree | 69bfb8585ad7a5a30f4234b1ee0959628817d4d2 /eclass/kde.eclass | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-f86a76a2110d50f41f4bdb0315751ba75091542b.tar.gz gentoo-2-f86a76a2110d50f41f4bdb0315751ba75091542b.tar.bz2 gentoo-2-f86a76a2110d50f41f4bdb0315751ba75091542b.zip |
Update base function calls to comply with currently in-review eclass.
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r-- | eclass/kde.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 2f7cfdb14d6a..31f4faaab818 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.224 2009/11/20 19:02:05 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.225 2010/01/03 19:10:49 scarabeus Exp $ # @ECLASS: kde.eclass # @MAINTAINER: @@ -82,7 +82,7 @@ kde_src_unpack() { # Unpack first and deal with KDE patches after examing possible patch sets. # To be picked up, patches need to be named $PN-$PV-*{diff,patch} and be # placed in $PATCHDIR. Monolithic ebuilds will use the split ebuild patches. - [[ -d "${KDE_S}" ]] || base_src_unpack unpack + [[ -d "${KDE_S}" ]] || base_src_unpack if [[ -d "${PATCHDIR}" ]] ; then local packages p f if is-parent-package ${CATEGORY}/${PN} ; then @@ -105,7 +105,7 @@ kde_src_unpack() { fi done fi - [[ -n ${PATCHES[@]} ]] && base_src_unpack autopatch + [[ -n ${PATCHES[@]} ]] && base_src_prepare else # Call base_src_unpack, which has sections, to do unpacking and patching # step by step transparently as defined in the ebuild. |