summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-09-07 00:31:13 +0000
committerRoland McGrath <roland@redhat.com>1994-09-07 00:31:13 +0000
commit4969b416b82bc3c920720345086be68296a7bae9 (patch)
tree89bb6d78b1663f53fad460cd9a53feb30bb6c49a /file.c
parent0bd0301ae3449502fdda45769b9d833e9f1b6ce6 (diff)
downloadgunmake-4969b416b82bc3c920720345086be68296a7bae9.tar.gz
(set_command_state): Actually set FILE->command_state.
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/file.c b/file.c
index ab70a03..a3657ef 100644
--- a/file.c
+++ b/file.c
@@ -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;
}