Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/
Date: Mon, 04 Jul 2022 23:24:21
Message-Id: 1656976978.a38cc9e5a1c3263d46a419eabda387e020ac54eb.sam@gentoo
1 commit: a38cc9e5a1c3263d46a419eabda387e020ac54eb
2 Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz>
3 AuthorDate: Mon Jul 4 14:38:46 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 23:22:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a38cc9e5
7
8 app-shells/zsh: fix docs building on live ebuild
9
10 Original proposed patch was provided in the docs, but adjusted to
11 generate docs in src_compile instead of src_install.
12
13 Closes: https://bugs.gentoo.org/661802
14 Co-authored-by: Aidan Harris <me <AT> aidanharr.is>
15 Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz>
16 Closes: https://github.com/gentoo/gentoo/pull/26220
17 Signed-off-by: Sam James <sam <AT> gentoo.org>
18
19 app-shells/zsh/zsh-9999.ebuild | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22 diff --git a/app-shells/zsh/zsh-9999.ebuild b/app-shells/zsh/zsh-9999.ebuild
23 index d50d9b419785..3493b711314b 100644
24 --- a/app-shells/zsh/zsh-9999.ebuild
25 +++ b/app-shells/zsh/zsh-9999.ebuild
26 @@ -127,7 +127,7 @@ src_compile() {
27 default
28
29 if [[ ${PV} == *9999 ]] && use doc ; then
30 - emake -C Doc everything
31 + emake -C Doc everything pdf dvi
32 fi
33 }