diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-10-22 21:15:12 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-10-22 21:15:12 +0000 |
commit | 06ce57fe59105b223d54cd9dad7bcc5e1a01b989 (patch) | |
tree | dc2f5353a8e0bb29ee70bcef783c6d4bc2266b4d | |
parent | d7a69b12aa7cd7951669012aa7e77a5534cf7e8c (diff) | |
download | portage-06ce57fe59105b223d54cd9dad7bcc5e1a01b989.tar.gz portage-06ce57fe59105b223d54cd9dad7bcc5e1a01b989.tar.bz2 portage-06ce57fe59105b223d54cd9dad7bcc5e1a01b989.zip |
Don't put -* in the env layer, since that layer isn't part of the incremental stacking in regenerate.
svn path=/main/trunk/; revision=4804
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index 616df7e7b..76c448c5f 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1499,7 +1499,7 @@ class config: if filename == "USE": binpkg_flags = "-* " + mydata self.configdict["pkg"][filename] = binpkg_flags - self.configdict["env"][filename] = binpkg_flags + self.configdict["env"][filename] = mydata else: self.configdict["pkg"][filename] = mydata self.configdict["env"][filename] = mydata |