summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
authorMichał Górny <gentoo@mgorny.alt.pl>2010-07-27 09:31:47 +0200
committerZac Medico <zmedico@gentoo.org>2010-07-27 00:36:32 -0700
commitaddd9a9b6027260bfbde35efc5408b5efe5341d6 (patch)
treef6fc2dad6bf2f922db881393ad627ed2a1bb09e9 /pym/_emerge
parent3914366fc40ed4d5971547cf0bfd035fe0f70cc6 (diff)
downloadportage-addd9a9b6027260bfbde35efc5408b5efe5341d6.tar.gz
portage-addd9a9b6027260bfbde35efc5408b5efe5341d6.tar.bz2
portage-addd9a9b6027260bfbde35efc5408b5efe5341d6.zip
Use a directory for the default set configuration.
Expect /usr/share/portage/config/sets to be a directory containing any number of set configuration files. The default Portage sets.conf should be now installed as sets/portage.conf, and other ebuilds are free to install their own set configuration files there.
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py
index b553e15e3..e4449e805 100644
--- a/pym/_emerge/main.py
+++ b/pym/_emerge/main.py
@@ -1010,7 +1010,7 @@ def missing_sets_warning(root_config, missing_sets):
if root_config.sets:
msg.append(" sets defined: %s" % ", ".join(root_config.sets))
msg.append(" This usually means that '%s'" % \
- (os.path.join(portage.const.GLOBAL_CONFIG_PATH, "sets.conf"),))
+ (os.path.join(portage.const.GLOBAL_CONFIG_PATH, "sets/portage.conf"),))
msg.append(" is missing or corrupt.")
msg.append(" Falling back to default world and system set configuration!!!")
for line in msg: