# # patch "ChangeLog" # from [9e0ee021f2b1d81700e96ab1f2705ee47ab7723f] # to [c1a0e071ee0e6cb05c0886ebdd5262fedebfea29] # # patch "std_hooks.lua" # from [c06a28443baa42ca4d4f349a6dd9653d25fa8c0f] # to [9b1a27e30129929aa366223e51f1c11ec918fc93] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,8 @@ +2005-06-16 Nathaniel Smith + + * std_hooks.lua (ignore_file): Add Cons/SCons cache files to + default ignore list. + 2005-06-15 Richard Levitte * netsync.cc (struct session): Add a pattern regex cache. --- std_hooks.lua +++ std_hooks.lua @@ -86,6 +86,11 @@ if (string.find(name, "/autom4te.cache/")) then return true end if (string.find(name, "^.deps/")) then return true end if (string.find(name, "/.deps/")) then return true end + -- Cons/SCons detritus: + if (string.find(name, "^.consign$")) then return true end + if (string.find(name, "/.consign$")) then return true end + if (string.find(name, "^.sconsign$")) then return true end + if (string.find(name, "/.sconsign$")) then return true end -- other VCSes: if (string.find(name, "^CVS/")) then return true end if (string.find(name, "/CVS/")) then return true end