summaryrefslogtreecommitdiffstats
path: root/pym/repoman
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2010-04-05 19:40:39 +0200
committerFabian Groffen <grobian@gentoo.org>2010-04-05 19:40:39 +0200
commit6212d08bff80cb49b5f648878fcb52f2bc019b31 (patch)
tree7f5a980052165d544a6dccc4b952f726ac47503d /pym/repoman
parent1399454f061a3f48ae8245979d432059b72b8b10 (diff)
downloadportage-6212d08bff80cb49b5f648878fcb52f2bc019b31.tar.gz
portage-6212d08bff80cb49b5f648878fcb52f2bc019b31.tar.bz2
portage-6212d08bff80cb49b5f648878fcb52f2bc019b31.zip
also check quoting on the Prefix variables added in EAPI=3, thanks jlec for the suggestion
Diffstat (limited to 'pym/repoman')
-rw-r--r--pym/repoman/checks.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py
index c918eea6d..23f1267d9 100644
--- a/pym/repoman/checks.py
+++ b/pym/repoman/checks.py
@@ -138,6 +138,9 @@ class EbuildQuote(LineCheck):
r'|(^\s*(' + "|".join(_ignored_commands) + r')\s+)')
var_names = ["D", "DISTDIR", "FILESDIR", "S", "T", "ROOT", "WORKDIR"]
+ # EAPI=3/Prefix vars
+ var_names += ["ED", "EPREFIX", "EROOT"]
+
# variables for games.eclass
var_names += ["Ddir", "GAMES_PREFIX_OPT", "GAMES_DATADIR",
"GAMES_DATADIR_BASE", "GAMES_SYSCONFDIR", "GAMES_STATEDIR",