media-libs/aubio: Install python last so that cwd is not changed too early. Bug #565002 by nilburn.

Package-Manager: portage-2.2.24
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
This commit is contained in:
Alexis Ballier
2015-11-10 12:52:25 +01:00
parent bcf4283ffd
commit 36e5bc6c16

View File

@@ -88,12 +88,6 @@ src_test() {
src_install() {
waf-utils_src_install
if use python ; then
cd "${PYTHON_SRC_DIR}" || die
DOCS="" distutils-r1_src_install
newdoc README README.python
fi
if use doc; then
dohtml -r doc/full/html/.
dodoc doc/*.txt
@@ -103,4 +97,10 @@ src_install() {
# install dist_noinst_SCRIPTS from Makefile.am
dodoc -r examples
fi
if use python ; then
cd "${PYTHON_SRC_DIR}" || die
DOCS="" distutils-r1_src_install
newdoc README README.python
fi
}