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 4EE0A138E20 for ; Thu, 20 Feb 2014 18:54:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA4BDE0B4B; Thu, 20 Feb 2014 18:54:58 +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 806BAE0B4B for ; Thu, 20 Feb 2014 18:54:58 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AEDF233FC34 for ; Thu, 20 Feb 2014 18:54:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 0503F18874 for ; Thu, 20 Feb 2014 18:54:56 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1392922474.9bb1bb60dd4a2d3cefb8720e76f6ccf04905e992.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/charm/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/charm/ChangeLog sys-cluster/charm/charm-6.6.0_rc2.ebuild X-VCS-Directories: sys-cluster/charm/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 9bb1bb60dd4a2d3cefb8720e76f6ccf04905e992 X-VCS-Branch: master Date: Thu, 20 Feb 2014 18:54:56 +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: 27dd792a-ccc9-4fc7-8d1d-589af727fc37 X-Archives-Hash: 51498a8a9fa5e8764ce0c4e88e9ae5dc commit: 9bb1bb60dd4a2d3cefb8720e76f6ccf04905e992 Author: Christoph Junghans gentoo org> AuthorDate: Thu Feb 20 18:54:34 2014 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Thu Feb 20 18:54:34 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9bb1bb60 fixed build, gcc doesn't understand -j1 Package-Manager: portage-2.2.7 --- sys-cluster/charm/ChangeLog | 3 +++ sys-cluster/charm/charm-6.6.0_rc2.ebuild | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sys-cluster/charm/ChangeLog b/sys-cluster/charm/ChangeLog index 7920664..551bcb4 100644 --- a/sys-cluster/charm/ChangeLog +++ b/sys-cluster/charm/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 20 Feb 2014; Christoph Junghans charm-6.6.0_rc2.ebuild: + fixed build, gcc doesn't understand -j1 + *charm-6.6.0_rc2 (19 Feb 2014) 19 Feb 2014; Nicolas Bock +charm-6.6.0_rc2.ebuild: diff --git a/sys-cluster/charm/charm-6.6.0_rc2.ebuild b/sys-cluster/charm/charm-6.6.0_rc2.ebuild index 5be505e..819fdbc 100644 --- a/sys-cluster/charm/charm-6.6.0_rc2.ebuild +++ b/sys-cluster/charm/charm-6.6.0_rc2.ebuild @@ -117,8 +117,8 @@ src_prepare() { src_compile() { local build_version="$(usex mpi "mpi" "net")-linux$(usex amd64 "-amd64" '')" local build_options="$(get_opts)" - local build_charmc_options="${MAKEOPTS} -j1" - local build_commandline="${build_version} ${build_options} ${build_charmc_options}" + #parallel build broken, just ignore MAKEOPTS + local build_commandline="${build_version} ${build_options}" # Build charmm++ first. einfo "running ./build charm++ ${build_commandline}"