Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12719 - main/trunk/pym/repoman
Date: Fri, 27 Feb 2009 01:20:53
Message-Id: E1LcrPF-0003Mg-Vd@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-02-27 01:20:49 +0000 (Fri, 27 Feb 2009)
3 New Revision: 12719
4
5 Modified:
6 main/trunk/pym/repoman/checks.py
7 Log:
8 Loosen EMakeParallelDisabled.re so it can match more variations.
9
10
11 Modified: main/trunk/pym/repoman/checks.py
12 ===================================================================
13 --- main/trunk/pym/repoman/checks.py 2009-02-27 01:08:01 UTC (rev 12718)
14 +++ main/trunk/pym/repoman/checks.py 2009-02-27 01:20:49 UTC (rev 12719)
15 @@ -319,7 +319,7 @@
16 class EMakeParallelDisabled(LineCheck):
17 """Check for emake -j1 calls which disable parallelization."""
18 repoman_check_name = 'upstream.workaround'
19 - re = re.compile(r'^\s*emake\s+-j\s*1\s')
20 + re = re.compile(r'^\s*emake\s+.*-j\s*1\b')
21 error = errors.EMAKE_PARALLEL_DISABLED
22
23 class EMakeParallelDisabledViaMAKEOPTS(LineCheck):