On 2002-11-05 17:26, Charles Pelletier <[EMAIL PROTECTED]> wrote: > How do I remove the dependencies created with the make depend I did > prior to this failed make? The original problem I had turned out to > be a memory issue so the make depend completed successfully. Ran > make, and it failed, presumably for the same reason, but, i got a > message regarding operands and 'mov'. Unfortunately I do not have > that message saved anywhere (d'oh!). I assumed there was another > memory issue so I added more swap space and ran make again, about > 1/2 through, the machine spontaneously rebooted. I just ran a make > clean. I really just want to remove those dependencies. Can I just > delete the prior kernel, reboot, create another kernel, and continue > on from there?
If you are using the recommended way of building everything (buildworld ... buildkernel) you can safely remove everything under /usr/obj and start over: # cd /usr/obj # rm -fr * # cd /usr/src # make buildworld ... To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message