diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-05-12 22:21:49 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-05-12 22:21:49 +0000 |
commit | ef047aec4cceca8f66aa06b2b2f1bf177d5d0970 (patch) | |
tree | c975108f0da1711ac0d0374be6532ae8e8312d77 | |
parent | 857e161e363046ce2269fe9a56da3c6cb75e683d (diff) | |
download | portage-ef047aec4cceca8f66aa06b2b2f1bf177d5d0970.tar.gz portage-ef047aec4cceca8f66aa06b2b2f1bf177d5d0970.tar.bz2 portage-ef047aec4cceca8f66aa06b2b2f1bf177d5d0970.zip |
In the warning about eclasses in overlay overriding eclasses from PORTDIR,
also advise the user to add FEATURES="metadata-transfer" to make.conf.
svn path=/main/trunk/; revision=10310
-rw-r--r-- | pym/_emerge/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index d721bd130..cee8db101 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -8713,7 +8713,8 @@ def emerge_main(): msg = "It is best to avoid overridding eclasses from PORTDIR " + \ "because it will trigger invalidation of cached ebuild metadata " + \ "that is distributed with the portage tree. If you must " + \ - "override eclasses from PORTDIR then you are advised to run " + \ + "override eclasses from PORTDIR then you are advised to add " + \ + "FEATURES=\"metadata-transfer\" to /etc/make.conf and to run " + \ "`emerge --regen` after each time that you run `emerge --sync`. " + \ "Set PORTAGE_ECLASS_WARNING_ENABLE=\"0\" in /etc/make.conf if " + \ "you would like to disable this warning." |