From: Tim Harder Date: Fri, 22 Jun 2018 19:32:06 +0000 (-0400) Subject: dev-python/sphinx: fix doc install X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=ccde4097ef3f2330c79823bd451f6eec8fb6796e;p=gentoo.git dev-python/sphinx: fix doc install Closes: https://bugs.gentoo.org/658720 --- diff --git a/dev-python/sphinx/sphinx-1.7.5.ebuild b/dev-python/sphinx/sphinx-1.7.5.ebuild index 328f321d8296..e9a69465dfe3 100644 --- a/dev-python/sphinx/sphinx-1.7.5.ebuild +++ b/dev-python/sphinx/sphinx-1.7.5.ebuild @@ -82,8 +82,8 @@ python_compile() { python_compile_all() { if use doc; then - emake -C doc SPHINXBUILD='"${EPYTHON}" "${S}/sphinx-build.py"' html - HTML_DOCS=( doc/_build/html/. ) + esetup.py build_sphinx + HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. ) fi }