diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-01-12 23:13:44 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-01-12 23:13:44 +0000 |
commit | 357298b81c4a248ec61b024eb24e19096e516656 (patch) | |
tree | 8b7ed7d98d42a44535eba441f4aa19d2f299fd5b /eclass | |
parent | Do not call dummy phases unnecessarily. (diff) | |
download | historical-357298b81c4a248ec61b024eb24e19096e516656.tar.gz historical-357298b81c4a248ec61b024eb24e19096e516656.tar.bz2 historical-357298b81c4a248ec61b024eb24e19096e516656.zip |
Support specifying directories in DOCS.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/distutils-r1.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index fbeb60539506..cfb7a561ca2c 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.610 2013/01/12 23:13:14 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.611 2013/01/12 23:13:44 mgorny Exp $ + + 12 Jan 2013; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass: + Support specifying directories in DOCS. 12 Jan 2013; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass: Do not call dummy phases unnecessarily. diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 44081e4e026d..67218598516e 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.41 2013/01/12 23:13:14 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.42 2013/01/12 23:13:44 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -381,7 +381,7 @@ distutils-r1_python_install_all() { debug-print-function ${FUNCNAME} "${@}" if declare -p DOCS &>/dev/null; then - dodoc "${DOCS[@]}" || die "dodoc failed" + dodoc -r "${DOCS[@]}" || die "dodoc failed" else local f # same list as in PMS |