diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-04-25 18:39:18 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-04-25 18:39:18 +0000 |
commit | d8ce69901e267bdbe2afe59fdcef420df46f25ae (patch) | |
tree | 4c2266fd69debd04e9662b5dcab2cbdc9113750f | |
parent | 668afd098871376bcb668dff1235920761e04715 (diff) | |
download | portage-d8ce69901e267bdbe2afe59fdcef420df46f25ae.tar.gz portage-d8ce69901e267bdbe2afe59fdcef420df46f25ae.tar.bz2 portage-d8ce69901e267bdbe2afe59fdcef420df46f25ae.zip |
Bug #219251 - Fix typo in PORTDIR_OVERLAY when searching for sets.conf files.
Thanks to Manuel Nickschas <sputnick@quassel-irc.org> for fixing this.
svn path=/main/trunk/; revision=9976
-rw-r--r-- | pym/portage/sets/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/sets/__init__.py b/pym/portage/sets/__init__.py index 39cebdf84..476aea4ca 100644 --- a/pym/portage/sets/__init__.py +++ b/pym/portage/sets/__init__.py @@ -102,7 +102,7 @@ class SetConfig(SafeConfigParser): def load_default_config(settings, trees): setconfigpaths = [os.path.join(GLOBAL_CONFIG_PATH, "sets.conf")] setconfigpaths.append(os.path.join(settings["PORTDIR"], "sets.conf")) - setconfigpaths += [os.path.join(x, "sets.conf") for x in settings["PORDIR_OVERLAY"].split()] + setconfigpaths += [os.path.join(x, "sets.conf") for x in settings["PORTDIR_OVERLAY"].split()] setconfigpaths.append(os.path.join(settings["PORTAGE_CONFIGROOT"], USER_CONFIG_PATH.lstrip(os.path.sep), "sets.conf")) return SetConfig(setconfigpaths, settings, trees) |