diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-02-02 10:20:25 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-02-02 10:20:25 +0000 |
commit | c361b3b75668f38792b6eb81826e03bb09bc0a25 (patch) | |
tree | 600f48e2512efec59c7df03faf140701a9a10d2b /eclass | |
parent | Update manifest. Upstream repacked. (diff) | |
download | historical-c361b3b75668f38792b6eb81826e03bb09bc0a25.tar.gz historical-c361b3b75668f38792b6eb81826e03bb09bc0a25.tar.bz2 historical-c361b3b75668f38792b6eb81826e03bb09bc0a25.zip |
Remove wrong -r argument from dodoc call.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/base.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/base.eclass b/eclass/base.eclass index 2642ff4c123c..7be8d418282f 100644 --- a/eclass/base.eclass +++ b/eclass/base.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/base.eclass,v 1.48 2010/01/24 13:43:26 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.49 2010/02/02 10:20:25 scarabeus Exp $ # @ECLASS: base.eclass # @MAINTAINER: @@ -172,7 +172,7 @@ base_src_install_docs() { if [[ "$(declare -p DOCS 2>/dev/null 2>&1)" == "declare -a"* ]]; then for x in "${DOCS[@]}"; do debug-print "$FUNCNAME: docs: creating document from ${x}" - dodoc -r "${x}" || die "dodoc failed" + dodoc "${x}" || die "dodoc failed" done fi if [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" == "declare -a"* ]]; then |