From bc01f1465a83488dd81aec93d2cf9f2b835cc44c Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 26 May 2015 14:35:56 +0800 Subject: [PATCH] src/Project/Gtk.vala --- src/Project/Gtk.vala | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Project/Gtk.vala b/src/Project/Gtk.vala index 21607f250..cf250fce7 100644 --- a/src/Project/Gtk.vala +++ b/src/Project/Gtk.vala @@ -299,11 +299,16 @@ namespace Project { // confgure.am if ("config.h" == bn || "config.h.in" == bn || "config.log" == bn || "configure" == bn ) { - if (allfiles.index_of( in_path +"/configure.am") > -1) { + if (allfiles.index_of( in_path +"/configure.ac") > -1) { + continue; + } + } + // makefile + if ("Makefile" == bn || "Makefile.in" == bn ) { + if (allfiles.index_of( in_path +"/Makefile.am") > -1) { continue; } } - if (Regex.match_simple("^\\.", GLib.Path.get_basename(fn))) { GLib.debug("SKIP %s - hidden",fn); -- 2.39.2