Re: [kbuild-devel] Re: Announce: Kernel Build for 2.5, release 3.0 is available

2002-06-04 Thread Arnd Bergmann
On Tuesday 04 June 2002 05:54, Keith Owens wrote: Please try this: +override KBUILD_OBJTREE := $(shell echo $(KBUILD_OBJTREE) | tr '\t' ' ' | sed -e 's:/* *$$:/:') Yep, that does it. Arnd ___ Don't miss the

Re: [kbuild-devel] Re: Announce: Kernel Build for 2.5, release 3.0 is available

2002-06-04 Thread Arnd Bergmann
On Tuesday 04 June 2002 06:53, Keith Owens wrote: kbuild-2.5-common-2.5.20-2. I still have a link order problem in -common-2.5.20-[12] that I noticed after I eventually tried to run my kbuild-2.5 kernel. The initialization code in arch/i386/pci needs the pci_bus_type object from

[kbuild-devel] Re: Announce: Kernel Build for 2.5, release 3.0 is available

2002-06-04 Thread Alex Riesen
Got this trying to compile 2.5.20 with Debian's gcc 2.95.4. Why it took the system-wide zlib.h? $ make -f Makefile-2.5 fs/isofs/compress.o KBUILD_QUIET= ... scripts/pp_makefile5 --type=CC --target=fs/isofs/compress.o --src=fs/isofs/compress.c --srctree=999 --flags='-Ifs/isofs -I- -D__KERNEL__

Re: [kbuild-devel] Re: Announce: Kernel Build for 2.5, release 3.0 is available

2002-06-04 Thread John Cowan
Keith Owens scripsit: In order to do separate source and object correctly, kbuild 2.5 enforces the rule that #include comes from the local directory, #include comes from the include path. include/linux/zlib.h incorrectly does #include zconf.h instead of #include linux/zconf.h, breaking

Re: [kbuild-devel] Re: Announce: Kernel Build for 2.5, release 3.0 is available

2002-06-04 Thread Keith Owens
On Tue, 4 Jun 2002 22:25:20 -0400 (EDT), John Cowan [EMAIL PROTECTED] wrote: Keith Owens scripsit: In order to do separate source and object correctly, kbuild 2.5 enforces the rule that #include comes from the local directory, #include comes from the include path. include/linux/zlib.h