From ac656fb80987a2a35def9ef131371ccddb5d1fb0 Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 31 Aug 2022 22:46:03 +0100 Subject: app-office/libreoffice: use emake, not make If the rationale (and that's a big if) for using make and not emake was parallelism, we should be using -j1, not 'make' which won't respect ${MAKE} or other ${MAKEOPTS}. While at it, clean up a stale/misplaced comment in src_install too (makes no sense where it is, presumably 'make' was previously used in src_install or -j1 was forced in the past). Signed-off-by: Sam James --- app-office/libreoffice/libreoffice-9999.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'app-office/libreoffice/libreoffice-9999.ebuild') diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index f791cbf01383..f7ff3494a447 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -582,12 +582,11 @@ src_compile() { } src_test() { - make unitcheck || die - make slowcheck || die + emake unitcheck + emake slowcheck } src_install() { - # This is not Makefile so no buildserver emake DESTDIR="${D}" distro-pack-install -o build -o check # bug 593514 -- cgit v1.2.3-65-gdbad