diff options
author | Tim Harder <radhermit@gentoo.org> | 2015-02-14 20:28:38 -0500 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2015-02-14 20:28:38 -0500 |
commit | b7476b729d114ea023d8c68f6fa20c3a29361026 (patch) | |
tree | 852c1cc57fcc1b7466369635a60683510c563db8 | |
parent | commandline: fix --version output for pcheck (and other optparse tools) (diff) | |
download | pkgcore-b7476b729d114ea023d8c68f6fa20c3a29361026.tar.gz pkgcore-b7476b729d114ea023d8c68f6fa20c3a29361026.tar.bz2 pkgcore-b7476b729d114ea023d8c68f6fa20c3a29361026.zip |
profiles: clarify profile fallback for IUSE EFFECTIVE support
-rw-r--r-- | pkgcore/ebuild/profiles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgcore/ebuild/profiles.py b/pkgcore/ebuild/profiles.py index 41cebfd1d..035aaede9 100644 --- a/pkgcore/ebuild/profiles.py +++ b/pkgcore/ebuild/profiles.py @@ -561,7 +561,7 @@ class ProfileStack(object): @klass.jit_attr def iuse_effective(self): - # prefer main system profile and fallback on custom profile + # prefer main system profile; otherwise, fallback to custom user profile for profile in reversed(self.stack): if not isinstance(profile, UserProfileNode): break |