From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AA8CB139694 for ; Sat, 18 Feb 2017 19:10:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F5CB21C03E; Sat, 18 Feb 2017 19:10:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E242021C03E for ; Sat, 18 Feb 2017 19:10:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2CD8340F43 for ; Sat, 18 Feb 2017 19:10:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 161DC4C64 for ; Sat, 18 Feb 2017 19:10:31 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1487445002.1cf59b29b2e388c3f3dfc9cb1fb44c399af7038a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_console/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jupyter_console/jupyter_console-5.1.0.ebuild X-VCS-Directories: dev-python/jupyter_console/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1cf59b29b2e388c3f3dfc9cb1fb44c399af7038a X-VCS-Branch: master Date: Sat, 18 Feb 2017 19:10:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 48f142c0-a979-4adb-b0ae-c15642348376 X-Archives-Hash: ab5d70ae9cfc9045a519dd9da995953a commit: 1cf59b29b2e388c3f3dfc9cb1fb44c399af7038a Author: David Seifert gentoo org> AuthorDate: Sat Feb 18 11:56:23 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Feb 18 19:10:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cf59b29 dev-python/jupyter_console: Fix doc building Bug: https://bugs.gentoo.org/show_bug.cgi?id=609454 Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/jupyter_console/jupyter_console-5.1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild b/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild index 23d5869a30..20323a47e4 100644 --- a/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild +++ b/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild @@ -45,7 +45,7 @@ python_prepare_all() { python_compile_all() { if use doc; then emake -C docs html - HTML_DOCS=( docs/build/html/. ) + HTML_DOCS=( docs/_build/html/. ) fi }