From: Roland McGrath Date: Wed, 7 Sep 1994 00:31:13 +0000 (+0000) Subject: (set_command_state): Actually set FILE->command_state. X-Git-Tag: 3.71.2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4969b416b82bc3c920720345086be68296a7bae9;p=thirdparty%2Fmake.git (set_command_state): Actually set FILE->command_state. --- 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; }