[PATCH] Fix 32bit build for git-x86

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <mingo@...>, <sam@...>, <tglx@...>, <linux-kernel@...>
Date: Monday, January 14, 2008 - 9:04 pm

Fixes the 32build here with git-x86 (tip 2f42671697ea9abc7d10ea7f663d6ef6e8ec6358)

Fix git-x86 build 

Otherwise

make[3]: Nothing to be done for `vmlinux'.
KBUILD_IMAGE := arch/x86/boot/bzImage
make[2]: KBUILD_IMAGE: Command not found
make[2]: *** [all] Error 127

Signed-off-by: Andi Kleen <ak@suse.de>

Index: linux/arch/x86/Makefile
===================================================================
--- linux.orig/arch/x86/Makefile
+++ linux/arch/x86/Makefile
@@ -211,7 +211,8 @@ PHONY += zImage bzImage compressed zlilo
 all: bzImage
 
 # KBUILD_IMAGE specify target image being built
-		    KBUILD_IMAGE := $(boot)/bzImage
+KBUILD_IMAGE := $(boot)/bzImage
+
 zImage zlilo zdisk: KBUILD_IMAGE := arch/x86/boot/zImage
 
 zImage bzImage: vmlinux
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] Fix 32bit build for git-x86, Andi Kleen, (Mon Jan 14, 9:04 pm)
Re: [PATCH] Fix 32bit build for git-x86, Ingo Molnar, (Tue Jan 15, 5:00 am)
Re: [PATCH] Fix 32bit build for git-x86, Sam Ravnborg, (Tue Jan 15, 3:45 am)
Re: [PATCH] Fix 32bit build for git-x86, Ingo Molnar, (Tue Jan 15, 4:53 am)
Re: [PATCH] Fix 32bit build for git-x86, Junio C Hamano, (Tue Jan 15, 3:56 am)