diff options
author | Alexis Ballier <aballier@gentoo.org> | 2015-11-10 12:52:25 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2015-11-10 12:52:32 +0100 |
commit | 36e5bc6c16f2ae51ea9f707b5deac9e93e723473 (patch) | |
tree | d5bb1e21caba883aeed793b88282d9913d8cfac1 | |
parent | dev-libs/libassuan: ia64 stable wrt bug #552614 (diff) | |
download | gentoo-36e5bc6c16f2ae51ea9f707b5deac9e93e723473.tar.gz gentoo-36e5bc6c16f2ae51ea9f707b5deac9e93e723473.tar.bz2 gentoo-36e5bc6c16f2ae51ea9f707b5deac9e93e723473.zip |
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>
-rw-r--r-- | media-libs/aubio/aubio-0.4.2.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/media-libs/aubio/aubio-0.4.2.ebuild b/media-libs/aubio/aubio-0.4.2.ebuild index 9f5142f77429..6104f6a314d7 100644 --- a/media-libs/aubio/aubio-0.4.2.ebuild +++ b/media-libs/aubio/aubio-0.4.2.ebuild @@ -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 } |