Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx/
Date: Fri, 22 Jun 2018 19:34:47
Message-Id: 1529695987.ccde4097ef3f2330c79823bd451f6eec8fb6796e.radhermit@gentoo
1 commit: ccde4097ef3f2330c79823bd451f6eec8fb6796e
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 22 19:32:06 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 22 19:33:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccde4097
7
8 dev-python/sphinx: fix doc install
9
10 Closes: https://bugs.gentoo.org/658720
11
12 dev-python/sphinx/sphinx-1.7.5.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/sphinx/sphinx-1.7.5.ebuild b/dev-python/sphinx/sphinx-1.7.5.ebuild
16 index 328f321d829..e9a69465dfe 100644
17 --- a/dev-python/sphinx/sphinx-1.7.5.ebuild
18 +++ b/dev-python/sphinx/sphinx-1.7.5.ebuild
19 @@ -82,8 +82,8 @@ python_compile() {
20
21 python_compile_all() {
22 if use doc; then
23 - emake -C doc SPHINXBUILD='"${EPYTHON}" "${S}/sphinx-build.py"' html
24 - HTML_DOCS=( doc/_build/html/. )
25 + esetup.py build_sphinx
26 + HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
27 fi
28 }