Re: can i delete /usr/obj/ before installworld?

2004-07-31 Thread cpghost
Scott wrote: Hi there, I'm really short on diskspace, and I have no room to run a make buildkernel after I run make buildworld. Is it possible to do the following: No. It's impossible. make buildworld rm -fr /usr/obj This is a no-op. You'd be just wasting time. 'make buildworld' populates

Re: can i delete /usr/obj/ before installworld?

2004-07-31 Thread cpghost
Scott wrote: Hi there, I'm really short on diskspace, and I have no room to run a make buildkernel after I run make buildworld. If you have enough space on another filesystem, you could move /usr/obj there, e.g. with a symlink, or by setting MAKEOBJDIRPREFIX?= /usr/obj to something else: #

Re: can i delete /usr/obj/ before installworld?

2004-07-31 Thread epilogue
On Sat, 31 Jul 2004 10:36:16 + Scott [EMAIL PROTECTED] wrote: Hi there, I'm really short on diskspace, and I have no room to run a make buildkernel after I run make buildworld. Is it possible to do the following: make buildworld rm -fr /usr/obj make buildkernel make