diff options
author | Paul Smith <psmith@gnu.org> | 2005-08-08 05:08:00 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2005-08-08 05:08:00 +0000 |
commit | b237dff7753f444c4e0e8ea6bb1929243e45b310 (patch) | |
tree | 8ccb5752696b899aee3a1b7cce24936d698a835c /read.c | |
parent | a53903e4c32f47ce3e20edd9114f4fabd028d13c (diff) | |
download | gunmake-b237dff7753f444c4e0e8ea6bb1929243e45b310.tar.gz |
- Fixed a bug reported by Michael Matz regarding handling of parallel
jobs after a failed job.
- Enhancements to WINDOWS32 code from Eli Zaretskii.
- Add Microsoft Project files from J. Grant.
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 23 |
1 files changed, 10 insertions, 13 deletions
@@ -2064,22 +2064,19 @@ record_files (struct nameseq *filenames, char *pattern, char *pattern_percent, d_ptr = &(*d_ptr)->next; if (cmds != 0) - { - /* This is the rule with commands, so put its deps - last. The rationale behind this is that $< expands - to the first dep in the chain, and commands use $< - expecting to get the dep that rule specifies. - However the second expansion algorithm reverses - the order thus we need to make it last here. */ - - (*d_ptr)->next = this; - } + /* This is the rule with commands, so put its deps + last. The rationale behind this is that $< expands to + the first dep in the chain, and commands use $< + expecting to get the dep that rule specifies. However + the second expansion algorithm reverses the order thus + we need to make it last here. */ + (*d_ptr)->next = this; else { /* This is the rule without commands. Put its - dependencies at the end but before dependencies - from the rule with commands (if any). This way - everything appears in makefile order. */ + dependencies at the end but before dependencies from + the rule with commands (if any). This way everything + appears in makefile order. */ if (f->cmds != 0) { |