aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2010-10-21 22:35:19 +0200
committerZac Medico <zmedico@gentoo.org>2010-10-21 13:44:03 -0700
commitf2d7564b93b4c5387fe82d8a8561b6420c04dee7 (patch)
treea3800cf0480240079e2e2a38588a5d68fe1a0455 /pym/_emerge/help.py
parentEnable tests for autoumask with EAPI 4. (diff)
downloadportage-f2d7564b93b4c5387fe82d8a8561b6420c04dee7.tar.gz
portage-f2d7564b93b4c5387fe82d8a8561b6420c04dee7.tar.bz2
portage-f2d7564b93b4c5387fe82d8a8561b6420c04dee7.zip
Raise default backtrack limit for bug 337178
The bug was solved in principle, but other conflicts could lead to all tries being used up too early. The default backtrack limit is changed from 5 to 10. The maximal depth of the backtrack graph is now half of the backtrack limit.
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index 4533cfba0..97562ab3b 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -314,7 +314,7 @@ def help(myopts, havecolor=1):
print(" " + green("--backtrack") + " " + turquoise("COUNT"))
desc = "Specifies an integer number of times to backtrack if " + \
"dependency calculation fails due to a conflict or an " + \
- "unsatisfied dependency (default: '5')."
+ "unsatisfied dependency (default: '10')."
for line in wrap(desc, desc_width):
print(desc_indent + line)
print()