Gentoo Archives: gentoo-dev

From: David Michael <fedora.dm0@×××××.com>
To: gentoo-dev@l.g.o
Cc: x11@g.o
Subject: [gentoo-dev] [PATCH] xorg-3.eclass: Call einstalldocs when not using XORG_MULTILIB
Date: Sun, 10 Jan 2021 00:05:47
Message-Id: 871retirl8.fsf@gmail.com
1 DOCS only got installed from the multilib-minimal_src_install call,
2 so they were missing from non-multilib packages. This corrects a
3 behavior difference from xorg-2.eclass where autotools-utils.eclass
4 installed DOCS for the non-multilib case.
5
6 Signed-off-by: David Michael <fedora.dm0@×××××.com>
7 ---
8 eclass/xorg-3.eclass | 1 +
9 1 file changed, 1 insertion(+)
10
11 diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass
12 index 399fc8661f4..fcaeb84edca 100644
13 --- a/eclass/xorg-3.eclass
14 +++ b/eclass/xorg-3.eclass
15 @@ -424,6 +424,7 @@ xorg-3_src_install() {
16 multilib-minimal_src_install "$@"
17 else
18 emake DESTDIR="${D}" "${install_args[@]}" "$@" install || die "emake install failed"
19 + einstalldocs
20 fi
21
22 # Many X11 libraries unconditionally install developer documentation
23 --
24 2.26.2