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 8250C13827E for ; Sun, 8 Dec 2013 17:39:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E3C7E09DB; Sun, 8 Dec 2013 17:39:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CD3A5E09EE for ; Sun, 8 Dec 2013 17:39:30 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 03A6B33F4ED for ; Sun, 8 Dec 2013 17:39:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id AD32CE55F9 for ; Sun, 8 Dec 2013 17:39:28 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1386524208.d3315b518f0743ff950eaa60608f1bd1d3a9afc2.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/xraylib/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/xraylib/xraylib-2.16.0.ebuild X-VCS-Directories: sci-libs/xraylib/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: d3315b518f0743ff950eaa60608f1bd1d3a9afc2 X-VCS-Branch: master Date: Sun, 8 Dec 2013 17:39:28 +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: 3b4367ef-791e-4ecb-a9c7-8b31006dd8d1 X-Archives-Hash: 4d9b896b0cc47fd661942072884f4bf4 commit: d3315b518f0743ff950eaa60608f1bd1d3a9afc2 Author: Chris Kerr cam ac uk> AuthorDate: Wed Dec 4 08:40:54 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Dec 8 17:36:48 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d3315b51 MAKEOPTS needs a space otherwise the "-j1" will merge with the previous argument --- sci-libs/xraylib/xraylib-2.16.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/xraylib/xraylib-2.16.0.ebuild b/sci-libs/xraylib/xraylib-2.16.0.ebuild index c5cd4c6..3d27552 100644 --- a/sci-libs/xraylib/xraylib-2.16.0.ebuild +++ b/sci-libs/xraylib/xraylib-2.16.0.ebuild @@ -60,7 +60,7 @@ src_configure() { src_compile() { # see https://github.com/tschoonj/xraylib/issues/11 if use fortran || use java; then - MAKEOPTS+="-j1" + MAKEOPTS+=" -j1" fi autotools-utils_src_compile }