summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-11 06:23:25 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-11 06:23:25 +0000
commitcf414f026df3aa2baa5fe277b05136770309dd76 (patch)
tree92c3cfecbc171d2869089378831c98f64ae3f6df
parentAdd a new upstream.workaround check for hardcoded MAKEOPTS=-j1 (previously (diff)
downloadportage-multirepo-cf414f026df3aa2baa5fe277b05136770309dd76.tar.gz
portage-multirepo-cf414f026df3aa2baa5fe277b05136770309dd76.tar.bz2
portage-multirepo-cf414f026df3aa2baa5fe277b05136770309dd76.zip
Loosen EMakeParallelDisabled.re so it can match more variations. (trunk r12719)
svn path=/main/branches/2.1.6/; revision=12974
-rw-r--r--pym/repoman/checks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py
index 5fc1c1a9..a9e29d2b 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):