diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-06-25 21:36:02 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-06-29 08:04:55 +0200 |
commit | 550101cb033e48faf63c2f8241ce3f60eaddfb27 (patch) | |
tree | 608ad5d234e186a54c6ba1c5dfa432c5471f018d /eclass | |
parent | dev-python/python-debian: Bump to 0.1.40 (diff) | |
download | gentoo-550101cb033e48faf63c2f8241ce3f60eaddfb27.tar.gz gentoo-550101cb033e48faf63c2f8241ce3f60eaddfb27.tar.bz2 gentoo-550101cb033e48faf63c2f8241ce3f60eaddfb27.zip |
distutils-r1.eclass: Defer wrapping scripts until after root-merge
Defer wrapping installed Python scripts until the files are merged
from impl-specific directory into ${ED}. This should clear the way
into using 'dosym -r'.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 238ba033c5d8..33608eb9fcc9 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -921,8 +921,8 @@ distutils-r1_python_install() { fi if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then - _distutils-r1_wrap_scripts "${root}" "${scriptdir}" multibuild_merge_root "${root}" "${D%/}" + _distutils-r1_wrap_scripts "${D%/}" "${scriptdir}" fi } |