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 1QZQny-0003ry-3h for garchives@archives.gentoo.org; Wed, 22 Jun 2011 17:01:30 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5677F1C2BD; Wed, 22 Jun 2011 17:01:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 24ABA1C2BD for ; Wed, 22 Jun 2011 17:01:22 +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 B83561B4022 for ; Wed, 22 Jun 2011 17:01:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D557380048 for ; Wed, 22 Jun 2011 17:01:20 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <4a7ccf8b0873d75996e4582de5f1db326f20bc45.sping@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: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 4a7ccf8b0873d75996e4582de5f1db326f20bc45 Date: Wed, 22 Jun 2011 17:01:20 +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: 471b0caa89780df8281907ba0c4d8f4a commit: 4a7ccf8b0873d75996e4582de5f1db326f20bc45 Author: Sebastian Pipping pipping org> AuthorDate: Wed Jun 22 17:00:35 2011 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Jun 22 17:00:35 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/genkernel.git= ;a=3Dcommit;h=3D4a7ccf8b Make --arch-override=3D affect "make menuconfig" (bug #247246) --- ChangeLog | 3 +++ gen_compile.sh | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4ea60ab..80850ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ # Distributed under the GPL v2 # $Id$ =20 + 22 Jun 2011; Sebastian Pipping gen_compile.sh: + Make --arch-override=3D affect "make menuconfig" (bug #247246) + 13 Jun 2011; Sebastian Pipping arch/x86_64/kernel-c= onfig: Unset CONFIG_EMBEDDED on arch amd64 =20 diff --git a/gen_compile.sh b/gen_compile.sh index 9f3801c..3a815e8 100755 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -243,9 +243,9 @@ compile_generic() { esac =20 case "${argstype}" in - kernel) ARGS=3D"`compile_kernel_args`" ;; + kernel|kernelruntask) ARGS=3D"`compile_kernel_args`" ;; utils) ARGS=3D"`compile_utils_args`" ;; - *) ARGS=3D"" ;; # includes kernelruntask + *) ARGS=3D"" ;; esac shift 2 =20