[gnome-code-assistance] Do not ignore targets starting with .



commit 11689d086804c486d46dbc1bf5278b607e70b7dc
Author: Jesse van den Kieboom <jessevdk gmail com>
Date:   Mon Dec 9 11:49:39 2013 +0100

    Do not ignore targets starting with .

 backends/c/makefileintegration.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/backends/c/makefileintegration.py b/backends/c/makefileintegration.py
index 83fac5e..07077e1 100644
--- a/backends/c/makefileintegration.py
+++ b/backends/c/makefileintegration.py
@@ -289,7 +289,7 @@ class MakefileIntegration:
             for match in reg.finditer(outstr):
                 target = match.group(1)
 
-                if target[0] == '#' or target[0] == '.' or '-am' in target:
+                if target[0] == '#' or '-am' in target:
                     continue
 
                 if target in found:


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]