From 4969b416b82bc3c920720345086be68296a7bae9 Mon Sep 17 00:00:00 2001
From: Roland McGrath <roland@redhat.com>
Date: Wed, 7 Sep 1994 00:31:13 +0000
Subject: [PATCH] (set_command_state): Actually set FILE->command_state.

---
 file.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/file.c b/file.c
index ab70a039..a3657efe 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;
 }