diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2006-09-21 23:32:44 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2006-09-21 23:32:44 +0000 |
commit | bdb2a5d47d1b383ad27ae179c5a4f1d2e26d6fcd (patch) | |
tree | ee6f9e18c2c1fca2f97581b5d45abff45055de60 /eclass | |
parent | Switching to expat from libxml2 since now libxml2 suffers from bitrot instead... (diff) | |
download | gentoo-2-bdb2a5d47d1b383ad27ae179c5a4f1d2e26d6fcd.tar.gz gentoo-2-bdb2a5d47d1b383ad27ae179c5a4f1d2e26d6fcd.tar.bz2 gentoo-2-bdb2a5d47d1b383ad27ae179c5a4f1d2e26d6fcd.zip |
Be sure about what we move and that the target exists. #148119
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 0e97adb2355a..cb5a9594da95 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.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.eclass,v 1.179 2006/09/21 22:23:44 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.180 2006/09/21 23:32:44 carlo Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -357,7 +357,8 @@ kde_src_install() { if [[ -n ${KDEBASE} ]] && [[ "${PN}" != "arts" ]] ; then # work around bug #97196 - mv ${D}/usr/share/doc/* "${D}/${KDEDIR}/share/doc/" + dodir ${KDEDIR}/share/doc/ + mv ${D}/usr/share/doc/${PF} "${D}/${KDEDIR}/share/doc/" fi } |