From f3a1ddeec3986bad27d374a8d815e691b5b10f42 Mon Sep 17 00:00:00 2001 From: Justin Lecher Date: Mon, 5 Apr 2010 19:43:34 +0200 Subject: [PATCH] PREFIX and ED quoting check --- pym/repoman/checks.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index c918eea..cd9034d 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -136,7 +136,7 @@ class EbuildQuote(LineCheck): _ignored_commands = ["local", "export"] + _message_commands ignore_line = re.compile(r'(^$)|(^\s*#.*)|(^\s*\w+=.*)' + \ r'|(^\s*(' + "|".join(_ignored_commands) + r')\s+)') - var_names = ["D", "DISTDIR", "FILESDIR", "S", "T", "ROOT", "WORKDIR"] + var_names = ["D", "ED", "DISTDIR", "FILESDIR", "S", "T", "ROOT", "WORKDIR", "EPREFIX"] # variables for games.eclass var_names += ["Ddir", "GAMES_PREFIX_OPT", "GAMES_DATADIR", -- 1.6.4.4