commit: 9bb54296629bcb86e82513e82adeb0510fc3ab18 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org> AuthorDate: Wed Dec 11 23:21:58 2019 +0000 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org> CommitDate: Wed Dec 11 23:21:58 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bb54296
app-emulation/aranym: Actually compile the code in src_compile When changing this to use multibuild.eclass, I forgot to define src_compile so it was compiling in src_install. Bug: https://bugs.gentoo.org/702560 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org> app-emulation/aranym/aranym-1.1.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-emulation/aranym/aranym-1.1.0.ebuild b/app-emulation/aranym/aranym-1.1.0.ebuild index de23d6c707e..f1d3aa7d610 100644 --- a/app-emulation/aranym/aranym-1.1.0.ebuild +++ b/app-emulation/aranym/aranym-1.1.0.ebuild @@ -88,6 +88,10 @@ multibuild_src_configure() { echo "#define HAVE_X11_XLIB_H 1" >> config.h || die } +src_compile() { + multibuild_foreach_variant run_in_build_dir default +} + src_install() { multibuild_foreach_variant run_in_build_dir default rm "${ED}"/usr/share/doc/${PF}/COPYING || die
