Re: [kbuild-devel] Re: installing header files

2002-05-06 Thread Giacomo Catenazzi
Brendan J Simon wrote: Keith Owens wrote: Does anyone know how Linux distros (debian, redhat, etc) populate the linux header files in /usr/include/linux ? Is a crude copy or is it done via a make target ? According FHS (and Debian, RH,... follow FHS), /usr/include/linux is created

Re: [kbuild-devel] Re: installing header files

2002-05-05 Thread Brendan J Simon
Keith Owens wrote: On Mon, 06 May 2002 12:10:09 +1000, Brendan J Simon [EMAIL PROTECTED] wrote: I'm using a Configuration Management System that is pointing to kernel 2.4.18 source header files but an application can not find autoconf.h which is included by config.h. That violates

Re: [kbuild-devel] Re: installing header files

2002-05-05 Thread Brendan J Simon
Keith Owens wrote: On Mon, 06 May 2002 13:28:59 +1000, Brendan J Simon [EMAIL PROTECTED] wrote: Is there a way to do this with kbuild ? make ... $KBUILD_OBJTREE/.tmp_src builds $KBUILD_OBJTREE/.tmp_src as a forest of 10,000+ symlinks pointing to the latest version of every source file,

Re: [kbuild-devel] Re: installing header files

2002-05-05 Thread Brendan J Simon
Keith Owens wrote: Is there a way to do this with kbuild ? make ... $KBUILD_OBJTREE/.tmp_src builds $KBUILD_OBJTREE/.tmp_src as a forest of 10,000+ symlinks pointing to the latest version of every source file, taking into account any shadow trees. cp -aL on that tree or a subset will get the

Re: [kbuild-devel] Re: installing header files

2002-05-05 Thread Keith Owens
On Mon, 06 May 2002 15:29:24 +1000, Brendan J Simon [EMAIL PROTECTED] wrote: Rereading your message above, are you saying that I have to _manually_ execute make $KBUILD_SRCTREE_000/Makefile-2.5 $KBUILD_OBJTREE/.tmp_src to get this directory or should this just exist after a normal make