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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 16A87158094 for ; Mon, 4 Jul 2022 23:24:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37A44E0AE1; Mon, 4 Jul 2022 23:24:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1457E0ADC for ; Mon, 4 Jul 2022 23:24:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE1A13419F8 for ; Mon, 4 Jul 2022 23:24:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46CB4526 for ; Mon, 4 Jul 2022 23:24:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1656976978.a38cc9e5a1c3263d46a419eabda387e020ac54eb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/zsh/zsh-9999.ebuild X-VCS-Directories: app-shells/zsh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a38cc9e5a1c3263d46a419eabda387e020ac54eb X-VCS-Branch: master Date: Mon, 4 Jul 2022 23:24:15 +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: 8b53770f-56fc-41a7-b6a0-c7f031f1f105 X-Archives-Hash: ba972f93297ddfca449268ed04ed7163 commit: a38cc9e5a1c3263d46a419eabda387e020ac54eb Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Mon Jul 4 14:38:46 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jul 4 23:22:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a38cc9e5 app-shells/zsh: fix docs building on live ebuild Original proposed patch was provided in the docs, but adjusted to generate docs in src_compile instead of src_install. Closes: https://bugs.gentoo.org/661802 Co-authored-by: Aidan Harris aidanharr.is> Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Closes: https://github.com/gentoo/gentoo/pull/26220 Signed-off-by: Sam James gentoo.org> app-shells/zsh/zsh-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-shells/zsh/zsh-9999.ebuild b/app-shells/zsh/zsh-9999.ebuild index d50d9b419785..3493b711314b 100644 --- a/app-shells/zsh/zsh-9999.ebuild +++ b/app-shells/zsh/zsh-9999.ebuild @@ -127,7 +127,7 @@ src_compile() { default if [[ ${PV} == *9999 ]] && use doc ; then - emake -C Doc everything + emake -C Doc everything pdf dvi fi }