Formerly remake.c.~25~

This commit is contained in:
Roland McGrath 1992-04-14 02:12:51 +00:00
parent 123c2494c3
commit 71956239ac

View file

@ -558,10 +558,13 @@ notice_finished_file (file)
d->file->command_state = cs_finished; d->file->command_state = cs_finished;
d->file->updated = 1; d->file->updated = 1;
d->file->update_status = file->update_status; d->file->update_status = file->update_status;
if (just_print_flag || question_flag)
d->file->last_mtime = file->last_mtime; if (!d->file->phony)
else /* Fetch the new modification time.
d->file->last_mtime = 0; We do this instead of just invalidating the cached time
so that a vpath_search can happen. Otherwise, it would
never be done because the target is already updated. */
(void) file_mtime (d->file);
} }
} }