diff options
author | Andi Kleen <ak@suse.de> | 2007-09-11 14:02:12 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-09-12 09:28:06 -0700 |
commit | 9863b78a1a82347fa1e727bdca0110151a5c4f10 (patch) | |
tree | 470016dc13ec85321f242ba537d911ffdd6908e2 /arch/i386/mach-voyager | |
parent | 2966c6a03efd90197582eae8590d82c789475680 (diff) | |
download | op-kernel-dev-9863b78a1a82347fa1e727bdca0110151a5c4f10.zip op-kernel-dev-9863b78a1a82347fa1e727bdca0110151a5c4f10.tar.gz |
i386: Fix leak of ../kernel from top level
Fix a compile error when the directory above the kernel source contains
a file named "kernel". Originally from Ben LaHaise, modified based on
feedback from Sam Ravnborg
Signed-off-by: Andi Kleen <ak@suse.de>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Ben LaHaise <bcrl@kvack.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/i386/mach-voyager')
-rw-r--r-- | arch/i386/mach-voyager/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/mach-voyager/Makefile b/arch/i386/mach-voyager/Makefile index f24d296..33b74cf 100644 --- a/arch/i386/mach-voyager/Makefile +++ b/arch/i386/mach-voyager/Makefile @@ -2,7 +2,7 @@ # Makefile for the linux kernel. # -EXTRA_CFLAGS += -I../kernel +EXTRA_CFLAGS := -Iarch/i386/kernel obj-y := setup.o voyager_basic.o voyager_thread.o obj-$(CONFIG_SMP) += voyager_smp.o voyager_cat.o |