* [PATCH -mm] Make 2.6.18-rc5-mm1 compile
@ 2006-09-01 10:57 Bernhard Rosenkraenzer
0 siblings, 0 replies; only message in thread
From: Bernhard Rosenkraenzer @ 2006-09-01 10:57 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm
CC arch/i386/kernel/sys_i386.o
arch/i386/kernel/sys_i386.c: In function 'kernel_execve':
arch/i386/kernel/sys_i386.c:262: error: '__NR_execve' undeclared (first use in
this function)
arch/i386/kernel/sys_i386.c:262: error: (Each undeclared identifier is
reported only once
arch/i386/kernel/sys_i386.c:262: error: for each function it appears in.)
make[1]: *** [arch/i386/kernel/sys_i386.o] Error 1
make: *** [arch/i386/kernel] Error 2
It's just a missing #include for the __NR_execve define -- fix below.
Signed-off-by: Bernhard Rosenkraenzer <bero@arklinux.org>
--- linux-2.6.17/arch/i386/kernel/sys_i386.c.ark 2006-09-01 12:43:34.000000000
+0200
+++ linux-2.6.17/arch/i386/kernel/sys_i386.c 2006-09-01 12:43:46.000000000
+0200
@@ -21,6 +21,7 @@
#include <linux/utsname.h>
#include <asm/uaccess.h>
+#include <asm/unistd.h>
#include <asm/ipc.h>
/*
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-09-01 11:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-01 10:57 [PATCH -mm] Make 2.6.18-rc5-mm1 compile Bernhard Rosenkraenzer
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.