Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10753 - main/trunk/bin
Date: Sat, 21 Jun 2008 11:58:50
Message-Id: E1KA1jx-0005pR-Al@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-06-21 11:58:44 +0000 (Sat, 21 Jun 2008)
3 New Revision: 10753
4
5 Modified:
6 main/trunk/bin/check-implicit-pointer-usage.py
7 Log:
8 Fix implicit_pattern to match different quote character found in warnings
9 generated by gcc-4.3. Thanks to aballier for reporting with sample log.
10
11
12 Modified: main/trunk/bin/check-implicit-pointer-usage.py
13 ===================================================================
14 --- main/trunk/bin/check-implicit-pointer-usage.py 2008-06-21 10:53:58 UTC (rev 10752)
15 +++ main/trunk/bin/check-implicit-pointer-usage.py 2008-06-21 11:58:44 UTC (rev 10753)
16 @@ -17,7 +17,7 @@
17 import sys
18
19 implicit_pattern = re.compile("([^:]*):(\d+): warning: implicit declaration "
20 - + "of function `([^']*)'")
21 + + "of function [`']([^']*)'")
22 pointer_pattern = re.compile(
23 "([^:]*):(\d+): warning: "
24 + "("
25
26 --
27 gentoo-commits@l.g.o mailing list