From d2bc552171cd05143fda03e406046a41eafa7ac5 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 26 May 2015 14:04:07 +0800 Subject: [PATCH] src/Project/Gtk.vala --- src/Project/Gtk.vala | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Project/Gtk.vala b/src/Project/Gtk.vala index 14ac0bc43..6653783c8 100644 --- a/src/Project/Gtk.vala +++ b/src/Project/Gtk.vala @@ -296,7 +296,7 @@ namespace Project { GLib.debug("SKIP %s - .vala (got bjs)",fn); continue; } - + GLib.debug("ADD %s",fn); ret.add( fn); continue; } @@ -307,8 +307,10 @@ namespace Project { var vv = (new Regex("\\.c$")).replace( fn, fn.length, 0, ".vala"); if (allfiles.index_of( vv) > -1) { + GLib.debug("SKIP %s - .c (got vala)",fn); continue; } + GLib.debug("ADD %s",fn); ret.add( fn); continue; } @@ -318,7 +320,7 @@ namespace Project { } // not .c / not .vala /not .bjs.. -- other type of file.. // allow ??? - + GLib.debug("ADD %s",fn); // add the 'c' file.. ret.add(fn); } catch (Error e) { -- 2.39.2