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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D342E1382C5 for ; Thu, 17 Dec 2020 17:33:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23DC3E0884; Thu, 17 Dec 2020 17:33:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 104B3E0884 for ; Thu, 17 Dec 2020 17:33:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82865341282 for ; Thu, 17 Dec 2020 17:33:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02BF9C8 for ; Thu, 17 Dec 2020 17:33:34 +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: <1608226409.e52880cfbdfdb383f31844687e78a16df94252e9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/rssguard/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-news/rssguard/rssguard-3.8.3.ebuild X-VCS-Directories: net-news/rssguard/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e52880cfbdfdb383f31844687e78a16df94252e9 X-VCS-Branch: master Date: Thu, 17 Dec 2020 17:33:34 +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: fe080e82-6b16-4056-b785-63bb95379c92 X-Archives-Hash: 8dcec1ed8d2f8f62e904d0321c3f5fc9 commit: e52880cfbdfdb383f31844687e78a16df94252e9 Author: Peter Alfredsen icloud com> AuthorDate: Wed Dec 16 13:59:02 2020 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 17 17:33:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52880cf net-news/rssguard: fix parallel make issue in src_install Closes: https://bugs.gentoo.org/760120 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Peter Alfredsen icloud.com> Closes: https://github.com/gentoo/gentoo/pull/18679 Signed-off-by: Sam James gentoo.org> net-news/rssguard/rssguard-3.8.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-news/rssguard/rssguard-3.8.3.ebuild b/net-news/rssguard/rssguard-3.8.3.ebuild index e6813d67096..15b6a7dac1d 100644 --- a/net-news/rssguard/rssguard-3.8.3.ebuild +++ b/net-news/rssguard/rssguard-3.8.3.ebuild @@ -55,5 +55,5 @@ src_configure() { } src_install() { - emake install INSTALL_ROOT="${D}" + emake -j1 install INSTALL_ROOT="${D}" }