diff options
author | lethal@linux-sh.org <lethal@linux-sh.org> | 2003-10-24 23:37:17 -0700 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:06:22 -0700 |
commit | 6ea7aa72dd894e723aef8881bd55766914cb07ed (patch) | |
tree | 85a20184c70ee99f1f22ed0c29101539fcd0bc23 | |
parent | e1b579406db58dc4ced1bec6339f7647c4fd69ea (diff) |
[PATCH] Fixup path for kernel includes when building with klibc.
Fixup path for kernel includes when building with klibc.
klibc expects the symlink klibc/linux to point to a relatively up
to date tree, use -Iklibc/linux/include to make linux/ and asm/
includes resolve properly, as these won't exist in the regular
klibc/klibc/include location.
-rw-r--r-- | Makefile.klibc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.klibc b/Makefile.klibc index f8f3955676..f7c3dbd844 100644 --- a/Makefile.klibc +++ b/Makefile.klibc @@ -120,7 +120,7 @@ ifeq ($(strip $(KLIBC)),true) # LIB_OBJS = $(GCC_LIB) LIBC = $(ARCH_LIB_OBJS) $(LIB_OBJS) - CFLAGS += -nostdinc -I$(INCLUDE_DIR) -I$(INCLUDE_DIR)/bits32 -I/home/greg/linux/linux-2.5/include -I$(GCCINCDIR) -D__KLIBC__ + CFLAGS += -nostdinc -I$(INCLUDE_DIR) -I$(INCLUDE_DIR)/bits32 -I$(GCCINCDIR) -Iklibc/linux/include -D__KLIBC__ LDFLAGS = # LDFLAGS = --static --nostdlib -nostartfiles else |