summaryrefslogtreecommitdiffstats
path: root/pym/repoman
diff options
context:
space:
mode:
Diffstat (limited to 'pym/repoman')
-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 e5237237f..f4a7733a0 100644
--- a/pym/repoman/checks.py
+++ b/pym/repoman/checks.py
@@ -271,7 +271,7 @@ class IUseUndefined(LineCheck):
class EMakeParallelDisabled(LineCheck):
"""Check for emake -j1 calls which disable parallelization."""
repoman_check_name = 'ebuild.minorsyn'
- re = re.compile(r'^\s*emake\s*-j\s*1\s')
+ re = re.compile(r'^\s*emake\s+-j\s*1\s')
error = errors.EMAKE_PARALLEL_DISABLED
class DeprecatedBindnowFlags(LineCheck):