summaryrefslogtreecommitdiff
path: root/implicit.c
diff options
context:
space:
mode:
Diffstat (limited to 'implicit.c')
-rw-r--r--implicit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/implicit.c b/implicit.c
index 05eaa7f..0a2b8d2 100644
--- a/implicit.c
+++ b/implicit.c
@@ -546,6 +546,7 @@ pattern_search (file, archive, depth, recursions)
}
dep = (struct dep *) xmalloc (sizeof (struct dep));
+ dep->ignore_mtime = 0;
s = found_files[deps_found];
if (recursions == 0)
{
@@ -611,6 +612,8 @@ pattern_search (file, archive, depth, recursions)
if (i != matches[foundrule])
{
struct dep *new = (struct dep *) xmalloc (sizeof (struct dep));
+ /* GKM FIMXE: handle '|' here too */
+ new->ignore_mtime = 0;
new->name = p = (char *) xmalloc (rule->lens[i] + fullstemlen + 1);
bcopy (rule->targets[i], p,
rule->suffixes[i] - rule->targets[i] - 1);