diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2007-09-27 20:25:32 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2007-09-27 20:25:32 +0000 |
commit | a55c023c4261a30b76c2ba4c30909e462383c790 (patch) | |
tree | ff0b2787ce21dfa88be4aae45deea140a5b9428e /eclass | |
parent | version bump, using transitional mode for compatibility with app-misc/ledit (diff) | |
download | historical-a55c023c4261a30b76c2ba4c30909e462383c790.tar.gz historical-a55c023c4261a30b76c2ba4c30909e462383c790.tar.bz2 historical-a55c023c4261a30b76c2ba4c30909e462383c790.zip |
The buildsycoca function has been working fine for ~arch for almost 17 months now. Time to allow it to run for stable, too.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde-functions.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass index 16c52e3d3282..9bbc05b5b93e 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.157 2007/08/19 07:40:38 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.158 2007/09/27 20:25:32 philantrop Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -896,7 +896,7 @@ buildsycoca() { [[ $EBUILD_PHASE != postinst ]] && [[ $EBUILD_PHASE != postrm ]] && \ die "buildsycoca() has to be calles in pkg_postinst() and pkg_postrm()." - if [[ -x ${KDEDIR}/bin/kbuildsycoca ]] && [[ -z ${ROOT} || ${ROOT} == "/" ]] && has "~${ARCH}" "${ACCEPT_KEYWORDS}"; then + if [[ -x ${KDEDIR}/bin/kbuildsycoca ]] && [[ -z ${ROOT} || ${ROOT} == "/" ]] ; then # First of all, make sure that the /usr/share/services directory exists # and it has the right permissions mkdir -p /usr/share/services |