On Fri, 5 Feb 1999, Matthew Dillon wrote: > > : > :Ahhh...not sure what you mean here....... > : > :On 06-Feb-99 Brian Feldman wrote: > :> On Fri, 5 Feb 1999, William Woods wrote: > :>> Floating point exception > :... > :> > :> Try "kvm_mkdb" yet? > :> > :---------------------------------- > :E-Mail: William Woods <wwo...@cybcon.com> > > Try this: > > cd /usr/src/lib/libkvm > make; make install; make clean > cd /usr/src/usr.bin/top > make; make install; make clean > kvm_mkdb >
In case anyone wants to rebuild everything with a kvm dependency, I made a little something (maybe it's a time for a make kvmdepend target, or something) #cd /usr/src cd lib/libkvm make all install clean cd - for dir in bin sbin usr.bin usr.sbin; do cd $dir for file in *; do if [ -f $file/Makefile ] && grep lkvm $file/Makefile; then (cd $file; make all install clean) fi done cd .. done > > -Matt > > Matthew Dillon > <dil...@backplane.com> > > To Unsubscribe: send mail to majord...@freebsd.org > with "unsubscribe freebsd-current" in the body of the message > Brian Feldman _ __ ___ ___ ___ gr...@unixhelp.org _ __ ___ | _ ) __| \ http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-current" in the body of the message