From: Fabian Groffen Date: Mon, 5 Apr 2010 17:40:39 +0000 (+0200) Subject: also check quoting on the Prefix variables added in EAPI=3, thanks jlec for the sugge... X-Git-Tag: v2.2_rc68~669 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6212d08bff80cb49b5f648878fcb52f2bc019b31;p=portage.git also check quoting on the Prefix variables added in EAPI=3, thanks jlec for the suggestion --- 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",