Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/util-linux/
Date: Sat, 29 Dec 2018 18:50:21
Message-Id: 1546109392.12cbec31c5df89959bb1f983b9cbf8bf9a0b9aef.floppym@gentoo
1 commit: 12cbec31c5df89959bb1f983b9cbf8bf9a0b9aef
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 29 18:47:57 2018 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 29 18:49:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12cbec31
7
8 sys-apps/util-linux: move gen_usr_ldscript after python install
9
10 Closes: https://bugs.gentoo.org/674010
11 Package-Manager: Portage-2.3.53, Repoman-2.3.12_p31
12 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
13
14 .../{util-linux-2.33.ebuild => util-linux-2.33-r1.ebuild} | 8 ++++----
15 1 file changed, 4 insertions(+), 4 deletions(-)
16
17 diff --git a/sys-apps/util-linux/util-linux-2.33.ebuild b/sys-apps/util-linux/util-linux-2.33-r1.ebuild
18 similarity index 100%
19 rename from sys-apps/util-linux/util-linux-2.33.ebuild
20 rename to sys-apps/util-linux/util-linux-2.33-r1.ebuild
21 index cf66f3c521b..893385c398d 100644
22 --- a/sys-apps/util-linux/util-linux-2.33.ebuild
23 +++ b/sys-apps/util-linux/util-linux-2.33-r1.ebuild
24 @@ -243,16 +243,16 @@ python_install() {
25 }
26
27 multilib_src_install() {
28 + if multilib_is_native_abi && use python; then
29 + python_foreach_impl python_install
30 + fi
31 +
32 emake DESTDIR="${D}" install
33
34 if multilib_is_native_abi && use userland_GNU; then
35 # need the libs in /
36 gen_usr_ldscript -a blkid fdisk mount smartcols uuid
37 fi
38 -
39 - if multilib_is_native_abi && use python; then
40 - python_foreach_impl python_install
41 - fi
42 }
43
44 multilib_src_install_all() {