From ccde4097ef3f2330c79823bd451f6eec8fb6796e Mon Sep 17 00:00:00 2001 From: Tim Harder Date: Fri, 22 Jun 2018 15:32:06 -0400 Subject: [PATCH] dev-python/sphinx: fix doc install Closes: https://bugs.gentoo.org/658720 --- dev-python/sphinx/sphinx-1.7.5.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/sphinx/sphinx-1.7.5.ebuild b/dev-python/sphinx/sphinx-1.7.5.ebuild index 328f321d82965..e9a69465dfe36 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 }