(set_command_state): Actually set FILE->command_state.

This commit is contained in:
Roland McGrath 1994-09-07 00:31:13 +00:00
parent 0bd0301ae3
commit 4969b416b8

2
file.c
View file

@ -394,6 +394,8 @@ set_command_state (file, state)
{
struct dep *d;
file->command_state = state;
for (d = file->also_make; d != 0; d = d->next)
d->file->command_state = state;
}