Fix time race.
This commit is contained in:
parent
3f056d8ef2
commit
fe4b07f194
1 changed files with 1 additions and 1 deletions
|
|
@ -230,5 +230,5 @@ outofdate(Node *node, Arc *arc, int eval)
|
||||||
} else if(strchr(arc->n->name, '(') && arc->n->time == 0) /* missing archive member */
|
} else if(strchr(arc->n->name, '(') && arc->n->time == 0) /* missing archive member */
|
||||||
return 1;
|
return 1;
|
||||||
else
|
else
|
||||||
return node->time < arc->n->time;
|
return node->time <= arc->n->time;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue