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 1QtPkw-0003lo-Hr for garchives@archives.gentoo.org; Tue, 16 Aug 2011 19:56:58 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2443521C0A5; Tue, 16 Aug 2011 19:56:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E2DE121C0A5 for ; Tue, 16 Aug 2011 19:56:49 +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 2295E1B405F for ; Tue, 16 Aug 2011 19:56:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3617280040 for ; Tue, 16 Aug 2011 19:56:48 +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: <04c38a93ed72148a8bb0e29e416af5a486a46d60.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: 04c38a93ed72148a8bb0e29e416af5a486a46d60 Date: Tue, 16 Aug 2011 19:56:48 +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: 2b0ec312b1decb7927c67ab11c42e3bd commit: 04c38a93ed72148a8bb0e29e416af5a486a46d60 Author: Fabio Erculiani sabayon org> AuthorDate: Tue Aug 16 20:00:00 2011 +0000 Commit: Fabio Erculiani gentoo org> CommitDate: Tue Aug 16 20:00:00 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/genkernel.git= ;a=3Dcommit;h=3D04c38a93 gen_compile: always use -j1 with kernel *_install targets, fixes compilat= ion with make 3.82 --- ChangeLog | 4 ++++ gen_compile.sh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0738649..f0547b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ # Distributed under the GPL v2 # $Id$ =20 + 16 Aug 2011; Fabio Erculiani gen_compile.sh: + gen_compile: always use -j1 with kernel *_install targets, fixes compi= lation + with make 3.82 + 06 Aug 2011; Sebastian Pipping gen_initramfs.sh: No longer copy /lib/libsysfs*so* for multipath-tools (bug #300841, bug #377709) diff --git a/gen_compile.sh b/gen_compile.sh index 0758c3a..01b20f8 100755 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -288,7 +288,7 @@ compile_modules() { compile_generic modules kernel export UNAME_MACHINE=3D"${ARCH}" [ "${INSTALL_MOD_PATH}" !=3D '' ] && export INSTALL_MOD_PATH - compile_generic "modules_install" kernel + MAKEOPTS=3D"${MAKEOPTS} -j1" compile_generic "modules_install" kernel unset UNAME_MACHINE } =20 @@ -312,7 +312,7 @@ compile_kernel() { if [ -n "${firmware_in_kernel_line}" -a "${firmware_in_kernel_line}" !=3D= CONFIG_FIRMWARE_IN_KERNEL=3Dy ] then print_info 1 " >> Installing firmware ('make firmware_install')= due to CONFIG_FIRMWARE_IN_KERNEL !=3D y..." - compile_generic "firmware_install" kernel + MAKEOPTS=3D"${MAKEOPTS} -j1" compile_generic "firmware_install" kernel else print_info 1 " >> Not installing firmware as it's included in t= he kernel already (CONFIG_FIRMWARE_IN_KERNEL=3Dy)..." fi