On Fri, 3 May 2002, Kenneth D. Merry wrote: > On Fri, May 03, 2002 at 22:00:05 -0600, Kenneth D. Merry wrote: > > The attached patch "fixes" it for me. > > > > I'm sure someone can come up with a cleaner way of fixing the problem.
It doesn't seem to be very easy to fix. Kernel makefiles should not depend on anything outside of the kernel tree. Depending on bsd.kern.mk is bad enough. > Sorry, it was this commit that broke building -current kernels on -stable: > > ru 2002/04/22 08:47:11 PDT > > Modified files: > sys/conf kmod.mk > Log: > Use standard bsd.init.mk prologue. > > Revision Changes Path > 1.116 +1 -7 src/sys/conf/kmod.mk > > > ==== //depot/FreeBSD-zero/src/sys/conf/kmod.mk#9 - >/usr/home/ken/perforce/FreeBSD-zero/src/sys/conf/kmod.mk ==== > > *** /tmp/tmp.18430.0 Fri May 3 21:51:56 2002 > > --- /usr/home/ken/perforce/FreeBSD-zero/src/sys/conf/kmod.mk Fri May 3 >21:51:43 2002 > > *************** > > *** 86,92 **** > > --- 86,98 ---- > > .error "Do not use KMODDEPS on 5.0+, use MODULE_VERSION/MODULE_DEPEND" > > .endif > > > > + .if exists(__<bsd.init.mk>__) It will never exist when it has 2 layers of misspelling like this :-). > > .include <bsd.init.mk> > > + .elif exists(../../../share/mk/bsd.init.mk) > > + .include "../../../share/mk/bsd.init.mk" > > + .elif exists(../../../../share/mk/bsd.init.mk) > > + .include "../../../../share/mk/bsd.init.mk" > > + .endif > > > > .SUFFIXES: .out .o .c .cc .cxx .C .y .l .s .S > > Not using it when it isn't in the standard place would be less ugly. Bruce To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message