From: Zac Medico Date: Wed, 11 Mar 2009 06:23:25 +0000 (-0000) Subject: Loosen EMakeParallelDisabled.re so it can match more variations. (trunk r12719) X-Git-Tag: v2.1.6.8~103 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=cf414f026df3aa2baa5fe277b05136770309dd76;p=portage.git Loosen EMakeParallelDisabled.re so it can match more variations. (trunk r12719) svn path=/main/branches/2.1.6/; revision=12974 --- diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 5fc1c1a93..a9e29d2be 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -319,7 +319,7 @@ class IUseUndefined(LineCheck): class EMakeParallelDisabled(LineCheck): """Check for emake -j1 calls which disable parallelization.""" repoman_check_name = 'upstream.workaround' - re = re.compile(r'^\s*emake\s+-j\s*1\s') + re = re.compile(r'^\s*emake\s+.*-j\s*1\b') error = errors.EMAKE_PARALLEL_DISABLED class EMakeParallelDisabledViaMAKEOPTS(LineCheck):