From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 80320158011 for ; Wed, 31 Aug 2022 21:47:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4B41E0837; Wed, 31 Aug 2022 21:47:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 80E5EE0837 for ; Wed, 31 Aug 2022 21:47:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4481034116D for ; Wed, 31 Aug 2022 21:47:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75F6C599 for ; Wed, 31 Aug 2022 21:47:29 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1661982422.ac656fb80987a2a35def9ef131371ccddb5d1fb0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libreoffice/libreoffice-7.3.5.2.ebuild app-office/libreoffice/libreoffice-7.3.9999.ebuild app-office/libreoffice/libreoffice-9999.ebuild X-VCS-Directories: app-office/libreoffice/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ac656fb80987a2a35def9ef131371ccddb5d1fb0 X-VCS-Branch: master Date: Wed, 31 Aug 2022 21:47:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 029d0f93-0e9d-4d47-a412-774a95150fbb X-Archives-Hash: 39dc6c3a98c430a37e817ac66173ea77 commit: ac656fb80987a2a35def9ef131371ccddb5d1fb0 Author: Sam James gentoo org> AuthorDate: Wed Aug 31 21:46:03 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Aug 31 21:47:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac656fb8 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 gentoo.org> app-office/libreoffice/libreoffice-7.3.5.2.ebuild | 5 ++--- app-office/libreoffice/libreoffice-7.3.9999.ebuild | 5 ++--- app-office/libreoffice/libreoffice-9999.ebuild | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/app-office/libreoffice/libreoffice-7.3.5.2.ebuild b/app-office/libreoffice/libreoffice-7.3.5.2.ebuild index d45c3048f25c..07c41dd1473e 100644 --- a/app-office/libreoffice/libreoffice-7.3.5.2.ebuild +++ b/app-office/libreoffice/libreoffice-7.3.5.2.ebuild @@ -585,12 +585,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 diff --git a/app-office/libreoffice/libreoffice-7.3.9999.ebuild b/app-office/libreoffice/libreoffice-7.3.9999.ebuild index 4969bd6b6a3e..69651435d7d7 100644 --- a/app-office/libreoffice/libreoffice-7.3.9999.ebuild +++ b/app-office/libreoffice/libreoffice-7.3.9999.ebuild @@ -585,12 +585,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 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