fix documentation
authorFabian Groffen <grobian@gentoo.org>
Wed, 26 Jan 2011 21:21:31 +0000 (22:21 +0100)
committerFabian Groffen <grobian@gentoo.org>
Wed, 26 Jan 2011 21:21:31 +0000 (22:21 +0100)
bin/repoman
pym/repoman/checks.py

index b5c7444fe4f70fd3236980189a7dcb19d184501f..f6e6a11d7fba88e1eb28606023ae72341664e1e8 100755 (executable)
@@ -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",
index cf364ca7e1761bb72ae3b20093c88ec681bd9552..b980fad4c50c0085fb1691fd3a94593629b330c4 100644 (file)
@@ -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)\}?.*')