diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-09 23:31:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-09 23:31:44 +0000 |
commit | f5653c1fda01ea733809dfcf4853e8afcb02a7b0 (patch) | |
tree | c1bad21779d3750f1cfdc260e5d053bb9ac340c6 /eclass/horde.eclass | |
parent | games-board/gtkatlantic stable on ppc. (diff) | |
download | historical-f5653c1fda01ea733809dfcf4853e8afcb02a7b0.tar.gz historical-f5653c1fda01ea733809dfcf4853e8afcb02a7b0.tar.bz2 historical-f5653c1fda01ea733809dfcf4853e8afcb02a7b0.zip |
fix CREDITS restoring
Diffstat (limited to 'eclass/horde.eclass')
-rw-r--r-- | eclass/horde.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/horde.eclass b/eclass/horde.eclass index 574252fc6692..df7b9d542ea7 100644 --- a/eclass/horde.eclass +++ b/eclass/horde.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/horde.eclass,v 1.31 2006/03/05 16:03:35 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.32 2006/03/09 23:31:44 vapier Exp $ # # Help manage the horde project http://www.horde.org/ # @@ -79,6 +79,7 @@ horde_pkg_setup() { HORDE_PHP_FEATURES=${HORDE_PHP_FEATURES:2} fi if ! built_with_use ${param} dev-lang/php ${HORDE_PHP_FEATURES} ; then + echo if [[ ${param} == "-o" ]] ; then eerror "You MUST re-emerge php with at least one of" else @@ -115,7 +116,7 @@ horde_src_install() { dodoc README docs/* mv docs/CREDITS "${T}"/ rm -f COPYING LICENSE README docs/* - mv CREDITS "${T}"/docs/ + mv "${T}"/CREDITS docs/ dodir ${destdir} cp -r . ${D}/${destdir}/ || die "install files" |