Re: 4.5->5.0 kldxref:No such file or directory

2002-03-16 Thread Lamont Granquist
On 15 Mar 2002, Dag-Erling Smorgrav wrote: > Emiel Kollof <[EMAIL PROTECTED]> writes: > > Why not test for it like this (or similar): > > > > [ -x /usr/sbin/kldxref ] && /usr/bin/kldxref (etcetera...) > > A better solution is > > @(kldxref ${DESTDIR}${KMODDIR} || \ > echo "Ig

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-15 Thread Dag-Erling Smorgrav
Emiel Kollof <[EMAIL PROTECTED]> writes: > Why not test for it like this (or similar): > > [ -x /usr/sbin/kldxref ] && /usr/bin/kldxref (etcetera...) A better solution is @(kldxref ${DESTDIR}${KMODDIR} || \ echo "Ignoring non-fatal kldxref failure") DES -- Dag-Erling Smor

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-13 Thread Brad Huntting
* Crist J. Clark ([EMAIL PROTECTED]) wrote: > > *** Error code 1 (ignored) > >^ > > Note. > > > Since there is no kldxref in 4.5, this should probably included in > > the bootstrap process somehow. > > A known issue. The install process deliberately ignores

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-13 Thread Sheldon Hearn
On Wed, 13 Mar 2002 04:13:35 +0100, Emiel Kollof wrote: > Why not test for it like this (or similar): > > [ -x /usr/sbin/kldxref ] && /usr/bin/kldxref (etcetera...) I think the reason this isn't helpful is because it only catches one failure case. The other is where /usr/sbin/kldxref doesn'

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-12 Thread David O'Brien
On Wed, Mar 13, 2002 at 04:13:35AM +0100, Emiel Kollof wrote: > > A known issue. The install process deliberately ignores this as a > > non-fatal error. > > Why not test for it like this (or similar): > > [ -x /usr/sbin/kldxref ] && /usr/bin/kldxref (etcetera...) > > If the new CURRENT testers

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-12 Thread Emiel Kollof
* Emiel Kollof ([EMAIL PROTECTED]) wrote: > # Calling kldxref(8) for each module is expensive. > .if !defined(NO_XREF) > .MAKEFLAGS:=${.MAKEFLAGS} -DNO_XREF > afterinstall: > @if [ -x /usr/sbin/kldref ]; then \ > kldxref ${DESTDIR}${KMODDIR}; \ > fi > .endif Gah! I m

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-12 Thread Emiel Kollof
* Crist J. Clark ([EMAIL PROTECTED]) wrote: > The warning is just how make(1) works, AFAIK, you can use shell cmd's in bsd make... > # Calling kldxref(8) for each module is expensive. > .if !defined(NO_XREF) > .MAKEFLAGS:=${.MAKEFLAGS} -DNO_XREF > afterinstall: > -kldxref $

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-12 Thread Crist J. Clark
On Wed, Mar 13, 2002 at 04:13:35AM +0100, Emiel Kollof wrote: > * Crist J. Clark ([EMAIL PROTECTED]) wrote: > > > *** Error code 1 (ignored) > > >^ > > > > Note. > > > > > Since there is no kldxref in 4.5, this should probably included in > > > the bootstrap pro

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-12 Thread Emiel Kollof
* Crist J. Clark ([EMAIL PROTECTED]) wrote: > > *** Error code 1 (ignored) > >^ > > Note. > > > Since there is no kldxref in 4.5, this should probably included in > > the bootstrap process somehow. > > A known issue. The install process deliberately ignores t

Re: 4.5->5.0 kldxref:No such file or directory

2002-03-12 Thread Crist J. Clark
On Tue, Mar 12, 2002 at 02:05:06PM -0700, [EMAIL PROTECTED] wrote: > > "make DESTDIR=/5.0 world kernel" encountered the following problem: > > [...] > -- > >>> Kernel build for GENERIC completed on Tue Mar 12 20:26:10 GM

4.5->5.0 kldxref:No such file or directory

2002-03-12 Thread huntting
"make DESTDIR=/5.0 world kernel" encountered the following problem: [...] -- >>> Kernel build for GENERIC completed on Tue Mar 12 20:26:10 GMT 2002