diff options
Diffstat (limited to 'dev-python/PyQt5/PyQt5-5.13.2.ebuild')
| -rw-r--r-- | dev-python/PyQt5/PyQt5-5.13.2.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dev-python/PyQt5/PyQt5-5.13.2.ebuild b/dev-python/PyQt5/PyQt5-5.13.2.ebuild index bf0d0d6170bc..d0702624228b 100644 --- a/dev-python/PyQt5/PyQt5-5.13.2.ebuild +++ b/dev-python/PyQt5/PyQt5-5.13.2.ebuild @@ -154,7 +154,13 @@ src_configure() { "${myconf[@]}" || die # Fix parallel install failure - sed -i -e '/INSTALLS += distinfo/i distinfo.depends = install_subtargets' ${PN}.pro || die + if python_is_python3; then + sed -i -e '/INSTALLS += distinfo/i distinfo.depends = install_subtargets install_pep484_stubs install_qscintilla_api' \ + ${PN}.pro || die + else + sed -i -e '/INSTALLS += distinfo/i distinfo.depends = install_subtargets install_qscintilla_api' \ + ${PN}.pro || die + fi # Run eqmake to respect toolchain and build flags eqmake5 -recursive ${PN}.pro |
