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 ACC5B158091 for ; Tue, 31 May 2022 04:46:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9ED06E096D; Tue, 31 May 2022 04:46:17 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 85816E096D for ; Tue, 31 May 2022 04:46:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8BC98341351 for ; Tue, 31 May 2022 04:46:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A999B4E5 for ; Tue, 31 May 2022 04:46:13 +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: <1653972362.2844d923fdf8d4aa82acc8a270c926b081f6ad77.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/unifont/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/unifont/unifont-14.0.03.ebuild X-VCS-Directories: media-fonts/unifont/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2844d923fdf8d4aa82acc8a270c926b081f6ad77 X-VCS-Branch: master Date: Tue, 31 May 2022 04:46:13 +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: 3ed5c69b-8bfb-4aa1-84a7-50fa9f756021 X-Archives-Hash: e9683b8f7636c9de545b7aada5b4a70b commit: 2844d923fdf8d4aa82acc8a270c926b081f6ad77 Author: Sam James gentoo org> AuthorDate: Tue May 31 04:46:02 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 31 04:46:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2844d923 media-fonts/unifont: build with -j1 Closes: https://bugs.gentoo.org/843584 Signed-off-by: Sam James gentoo.org> media-fonts/unifont/unifont-14.0.03.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/media-fonts/unifont/unifont-14.0.03.ebuild b/media-fonts/unifont/unifont-14.0.03.ebuild index 3986f0a2afe0..ff3636ed0802 100644 --- a/media-fonts/unifont/unifont-14.0.03.ebuild +++ b/media-fonts/unifont/unifont-14.0.03.ebuild @@ -37,8 +37,10 @@ src_compile() { CFLAGS="${CFLAGS}" INSTALL="${INSTALL-install}" ) + if use fontforge || use utils; then - emake "${buildargs[@]}" + # -j1 for bug #843584 + emake -j1 "${buildargs[@]}" fi }