Re: USE

Kerin Millar <[email protected]> Thu, 24 Oct 2002 12:26:24 +0000
Newsgroups gmane.linux.gentoo.newbies
Organization Recruit2Recruit.NET Ltd
Message-ID <[email protected]>
On Wed, 23 Oct 2002 22:30:23 +0200
Pieter Breed <[email protected]> wrote:

> hi
> 
> my installation somehow erased my USE settings in make.conf which I set before 
> beginning the installation.


You'll have to put them back in. No getting around that, but bear in mind that a lot of defaults are (and should still be) present in your /etc/make.profile/make.defaults. You don't need to specify those unless you want to disable any of them e.g.:

USE="-oss"

> 
> How can I re-emerge everything?  Recompiling rather :)
> 
> p!
> -- 

Here's one way to do it (as root, of course):

  emerge gentoolkit
  cd /var/cache/edb
  mv world world.orig
  qpkg -I -nc > world
  emerge world
  mv world.orig world

--kerframil