Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 29 Jun 2021 06:05:09
Message-Id: 1624946695.550101cb033e48faf63c2f8241ce3f60eaddfb27.mgorny@gentoo
1 commit: 550101cb033e48faf63c2f8241ce3f60eaddfb27
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 25 19:36:02 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 29 06:04:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=550101cb
7
8 distutils-r1.eclass: Defer wrapping scripts until after root-merge
9
10 Defer wrapping installed Python scripts until the files are merged
11 from impl-specific directory into ${ED}. This should clear the way
12 into using 'dosym -r'.
13
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 eclass/distutils-r1.eclass | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
20 index 238ba033c5d..33608eb9fcc 100644
21 --- a/eclass/distutils-r1.eclass
22 +++ b/eclass/distutils-r1.eclass
23 @@ -921,8 +921,8 @@ distutils-r1_python_install() {
24 fi
25
26 if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then
27 - _distutils-r1_wrap_scripts "${root}" "${scriptdir}"
28 multibuild_merge_root "${root}" "${D%/}"
29 + _distutils-r1_wrap_scripts "${D%/}" "${scriptdir}"
30 fi
31 }