From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QtPm4-0003po-0l for garchives@archives.gentoo.org; Tue, 16 Aug 2011 19:58:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 572DA21C0FB; Tue, 16 Aug 2011 19:58:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 242F221C0FB for ; Tue, 16 Aug 2011 19:58:00 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F0FF1B405A for ; Tue, 16 Aug 2011 19:57:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id EE5B480040 for ; Tue, 16 Aug 2011 19:57:58 +0000 (UTC) From: "Fabio Erculiani" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabio Erculiani" Message-ID: <78667c1e130a6e70eabd03e56ff69123082f73b2.lxnay@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: ChangeLog gen_compile.sh X-VCS-Directories: / X-VCS-Committer: lxnay X-VCS-Committer-Name: Fabio Erculiani X-VCS-Revision: 78667c1e130a6e70eabd03e56ff69123082f73b2 Date: Tue, 16 Aug 2011 19:57:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 37059a30a3ec7dec583da24ed0d7ca8f commit: 78667c1e130a6e70eabd03e56ff69123082f73b2 Author: Fabio Erculiani sabayon org> AuthorDate: Tue Aug 16 20:01:13 2011 +0000 Commit: Fabio Erculiani gentoo org> CommitDate: Tue Aug 16 20:01:13 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/genkernel.git= ;a=3Dcommit;h=3D78667c1e gen_compile: correct MAKEOPTS usage on utils task --- ChangeLog | 3 +++ gen_compile.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index f0547b4..fdba306 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,9 @@ # $Id$ =20 16 Aug 2011; Fabio Erculiani gen_compile.sh: + gen_compile: correct MAKEOPTS usage on utils task + + 16 Aug 2011; Fabio Erculiani gen_compile.sh: gen_compile: always use -j1 with kernel *_install targets, fixes compi= lation with make 3.82 =20 diff --git a/gen_compile.sh b/gen_compile.sh index 01b20f8..ae66ca2 100755 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -530,7 +530,7 @@ compile_dmraid() { mkdir -p "${TEMP}/dmraid" print_info 1 'dmraid: >> Compiling...' # Force dmraid to be built with -j1 for bug #188273 - MAKEOPTS=3D-j1 compile_generic '' utils + MAKEOPTS=3D"${MAKEOPTS} -j1" compile_generic '' utils #compile_generic 'install' utils mkdir ${TEMP}/dmraid/sbin install -m 0755 -s tools/dmraid "${TEMP}/dmraid/sbin/dmraid"