diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | gen_compile.sh | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -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 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 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 |