From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 95F8613888F for ; Mon, 5 Oct 2015 00:47:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89FF8E07DB; Mon, 5 Oct 2015 00:47:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05E92E07DB for ; Mon, 5 Oct 2015 00:47:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 277D03409D7 for ; Mon, 5 Oct 2015 00:47:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15A6357C for ; Mon, 5 Oct 2015 00:47:35 +0000 (UTC) From: "Michael Sterrett" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Sterrett" Message-ID: <1444006044.453d7043e683558978470e20d45a36a21f975ac4.mr_bones_@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/megaglest/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-strategy/megaglest/megaglest-3.11.1.ebuild X-VCS-Directories: games-strategy/megaglest/ X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett X-VCS-Revision: 453d7043e683558978470e20d45a36a21f975ac4 X-VCS-Branch: master Date: Mon, 5 Oct 2015 00:47:35 +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-Archives-Salt: c9a65c4b-60fc-41ca-b962-1c08549e16c5 X-Archives-Hash: f38e861c6d87d1b245614e5f005834ae commit: 453d7043e683558978470e20d45a36a21f975ac4 Author: Michael Sterrett gentoo org> AuthorDate: Mon Oct 5 00:47:09 2015 +0000 Commit: Michael Sterrett gentoo org> CommitDate: Mon Oct 5 00:47:24 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=453d7043 work around parallel make issues - bug #561380 Package-Manager: portage-2.2.20.1 games-strategy/megaglest/megaglest-3.11.1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/games-strategy/megaglest/megaglest-3.11.1.ebuild b/games-strategy/megaglest/megaglest-3.11.1.ebuild index 3c74a8d..a050264 100644 --- a/games-strategy/megaglest/megaglest-3.11.1.ebuild +++ b/games-strategy/megaglest/megaglest-3.11.1.ebuild @@ -116,7 +116,9 @@ src_configure() { src_compile() { if use editor || use model-viewer; then - VIRTUALX_COMMAND="cmake-utils_src_compile" virtualmake + # work around parallel make issues - bug #561380 + MAKEOPTS="-j1 ${MAKEOPTS}" \ + VIRTUALX_COMMAND="cmake-utils_src_compile" virtualmake else cmake-utils_src_compile fi