emerge: mention revdep-rebuild in depclean help v2.1.9.41
authorZac Medico <zmedico@gentoo.org>
Tue, 22 Feb 2011 17:31:50 +0000 (09:31 -0800)
committerZac Medico <zmedico@gentoo.org>
Tue, 22 Feb 2011 17:38:35 +0000 (09:38 -0800)
pym/_emerge/help.py

index bd6c0f2351c3c0af05e196acbe47c97bc6775235..2f8b342cdef9758a8eeb0da4d7388bdc64739d5b 100644 (file)
@@ -94,11 +94,16 @@ def help(myopts, havecolor=1):
                "listed in package.provided (see portage(5)) may be removed by " + \
                "depclean, even if they are part of the world set."
 
-               if not _ENABLE_DYN_LINK_MAP:
-                       paragraph += " Also note that " + \
-                               "depclean may break link level dependencies. Thus, it is " + \
-                               "recommended to use a tool such as revdep-rebuild(1) " + \
-                               "in order to detect such breakage."
+               paragraph += " Also note that " + \
+                       "depclean may break link level dependencies"
+
+               if _ENABLE_DYN_LINK_MAP:
+                       paragraph += ", especially when the " + \
+                               "--depclean-lib-check option is disabled"
+
+               paragraph += ". Thus, it is " + \
+                       "recommended to use a tool such as revdep-rebuild(1) " + \
+                       "in order to detect such breakage."
 
                for line in wrap(paragraph, desc_width):
                        print(desc_indent + line)