Gentoo Archives: gentoo-python

From: "Michał Górny" <mgorny@g.o>
To: gentoo-python@l.g.o
Cc: python@g.o, "Michał Górny" <mgorny@g.o>
Subject: [gentoo-python] [PATCH] Support directories in DOCS.
Date: Sat, 12 Jan 2013 21:15:25
Message-Id: 1358014838-14927-1-git-send-email-mgorny@gentoo.org
1 ---
2 gx86/eclass/distutils-r1.eclass | 2 +-
3 1 file changed, 1 insertion(+), 1 deletion(-)
4
5 diff --git a/gx86/eclass/distutils-r1.eclass b/gx86/eclass/distutils-r1.eclass
6 index 8156a36..eafcd03 100644
7 --- a/gx86/eclass/distutils-r1.eclass
8 +++ b/gx86/eclass/distutils-r1.eclass
9 @@ -381,7 +381,7 @@ distutils-r1_python_install_all() {
10 debug-print-function ${FUNCNAME} "${@}"
11
12 if declare -p DOCS &>/dev/null; then
13 - dodoc "${DOCS[@]}" || die "dodoc failed"
14 + dodoc -r "${DOCS[@]}" || die "dodoc failed"
15 else
16 local f
17 # same list as in PMS
18 --
19 1.8.1

Replies

Subject Author
[gentoo-python] Re: [PATCH] Support directories in DOCS. Mike Gilbert <floppym@g.o>