commit: dc011d3bc0c237d09ed8a45610124f458d0a2262 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon May 9 23:21:12 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon May 9 23:21:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc011d3b
media-plugins/alsa-plugins: avoid parallel install failure Just create the dir it expects for now until upstream decide what they want to do w/ the hooks. Closes: https://bugs.gentoo.org/835920 Reported-by: Eric F. GARIOUD <eric-f.garioud <AT> wanadoo.fr> Signed-off-by: Sam James <sam <AT> gentoo.org> media-plugins/alsa-plugins/alsa-plugins-1.2.6.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/media-plugins/alsa-plugins/alsa-plugins-1.2.6.ebuild b/media-plugins/alsa-plugins/alsa-plugins-1.2.6.ebuild index 9a24661c71e9..0ed85e7dcab9 100644 --- a/media-plugins/alsa-plugins/alsa-plugins-1.2.6.ebuild +++ b/media-plugins/alsa-plugins/alsa-plugins-1.2.6.ebuild @@ -61,6 +61,14 @@ multilib_src_configure() { ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } +multilib_src_install() { + # Needed to workaround parallel build failure + # bug #835920 + dodir /usr/$(get_libdir)/alsa-lib + + default +} + multilib_src_install_all() { einstalldocs
