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 858C0138350 for ; Tue, 7 Apr 2020 07:42:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D6CDE0D97; Tue, 7 Apr 2020 07:42:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53E14E0D97 for ; Tue, 7 Apr 2020 07:42:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5378F34F0B9 for ; Tue, 7 Apr 2020 07:42:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F5F31D7 for ; Tue, 7 Apr 2020 07:42:21 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1586244444.94cae4d90a900be26cc13732bbc8c41cb2c47f20.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/docs.eclass X-VCS-Directories: eclass/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 94cae4d90a900be26cc13732bbc8c41cb2c47f20 X-VCS-Branch: master Date: Tue, 7 Apr 2020 07:42:21 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8d5494d0-5ace-4047-8dbf-96da3e187b1e X-Archives-Hash: a9d1270af048ec173cf2a3626adac270 Message-ID: <20200407074221.ForD8QxW3ejx93FVs_3LcgXXR3sN3Lo79Fgskd6uD9I@z> commit: 94cae4d90a900be26cc13732bbc8c41cb2c47f20 Author: Andrew Ammerlaan riseup net> AuthorDate: Tue Apr 7 07:27:24 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Tue Apr 7 07:27:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=94cae4d9 eclass/docs: one more bug fix Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> eclass/docs.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/docs.eclass b/eclass/docs.eclass index 6e4ceea..c3fb6e3 100644 --- a/eclass/docs.eclass +++ b/eclass/docs.eclass @@ -186,7 +186,7 @@ sphinx_compile() { if grep -F -q 'sphinx.ext.autodoc' "${confpy}"; then die "${FUNCNAME}: autodoc disabled but sphinx.ext.autodoc found in ${confpy}" fi - elif [[ -z ${DOCDEPEND[@]} ]]; then + elif [[ ${AUTODOC} == 1 ]]; then if ! grep -F -q 'sphinx.ext.autodoc' "${confpy}"; then die "${FUNCNAME}: sphinx.ext.autodoc not found in ${confpy}, set AUTODOC=0" fi