Make --arch-override= affect "make menuconfig" (bug #247246)
authorSebastian Pipping <sebastian@pipping.org>
Wed, 22 Jun 2011 17:00:35 +0000 (19:00 +0200)
committerSebastian Pipping <sebastian@pipping.org>
Wed, 22 Jun 2011 17:00:35 +0000 (19:00 +0200)
ChangeLog
gen_compile.sh

index 4ea60ab329010c4a55a58dad29fb9da79f75c9d7..80850aee8a7a046d45ae5d1005db0cefbfdbbcc6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@
 # Distributed under the GPL v2
 # $Id$
 
+  22 Jun 2011; Sebastian Pipping <sping@gentoo.org> gen_compile.sh:
+  Make --arch-override= affect "make menuconfig" (bug #247246)
+
   13 Jun 2011; Sebastian Pipping <sping@gentoo.org> arch/x86_64/kernel-config:
   Unset CONFIG_EMBEDDED on arch amd64
 
index 9f3801c34cf00497e731aa47f2b035a268d33cf0..3a815e83c613d5494191f87dd4969ae7304a5b0f 100755 (executable)
@@ -243,9 +243,9 @@ compile_generic() {
        esac
 
        case "${argstype}" in
-               kernel) ARGS="`compile_kernel_args`" ;;
+               kernel|kernelruntask) ARGS="`compile_kernel_args`" ;;
                utils) ARGS="`compile_utils_args`" ;;
-               *) ARGS="" ;; # includes kernelruntask
+               *) ARGS="" ;;
        esac
        shift 2