From: Fabian Groffen Date: Wed, 26 Jan 2011 21:21:31 +0000 (+0100) Subject: fix documentation X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3f4f3d9a85d9bef3baeda2e153ebf412da9d823d;p=portage.git fix documentation --- diff --git a/bin/repoman b/bin/repoman index b5c7444fe..f6e6a11d7 100755 --- a/bin/repoman +++ b/bin/repoman @@ -296,7 +296,7 @@ qahelp={ "inherit.autotools":"Ebuild inherits autotools but does not call eautomake, eautoconf or eautoreconf", "inherit.deprecated":"Ebuild inherits a deprecated eclass", "java.eclassesnotused":"With virtual/jdk in DEPEND you must inherit a java eclass", - "prefix.usedwithhelpers":"Ebuild uses ED or EPREFIX with helpers (doins)", + "prefix.usedwithhelpers":"Ebuild uses ED, EROOT or EPREFIX with helpers", "wxwidgets.eclassnotused":"Ebuild DEPENDs on x11-libs/wxGTK without inheriting wxwidgets.eclass", "KEYWORDS.dropped":"Ebuilds that appear to have dropped KEYWORDS for some arch", "KEYWORDS.missing":"Ebuilds that have a missing or empty KEYWORDS variable", diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index cf364ca7e..b980fad4c 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -328,7 +328,7 @@ class EprefixifyDefined(LineCheck): self._prefix_inherited = True class EprefixWithHelpers(LineCheck): - """ Check that ED, EROOT and EPREFIX aren't used with helpers (doins) """ + """ Check that ED, EROOT and EPREFIX aren't used with helpers """ repoman_check_name = 'prefix.usedwithhelpers' re = re.compile(r'.*\b(dodir|dohard|exeinto|insinto|into)\s+"?\$\{?(ED|EROOT|EPREFIX)\}?.*')