diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-05-06 02:11:17 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-05-06 02:11:17 +0000 |
commit | 7f6ebe8743bba45822b488d6f3cf48911139c744 (patch) | |
tree | db2bdd725827b74f72915bf931bf39308f4eccda | |
parent | 88bbb1ac0e88b8d2024bbeebf1dfa06d75c20ea1 (diff) | |
download | portage-7f6ebe8743bba45822b488d6f3cf48911139c744.tar.gz portage-7f6ebe8743bba45822b488d6f3cf48911139c744.tar.bz2 portage-7f6ebe8743bba45822b488d6f3cf48911139c744.zip |
Obey self.incrementals in config.regenerate() instead of using portage_const.INCREMENTALS directly.
svn path=/main/trunk/; revision=3322
-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 339d96b94..a4e042e58 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1502,7 +1502,7 @@ class config: if useonly: myincrementals=["USE"] else: - myincrementals=portage_const.INCREMENTALS + myincrementals = self.incrementals # If self.features exists, it has already been stacked and may have # been mutated, so don't stack it again or else any mutations will be |