[BACK]Return to job.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/job.c between version 1.107 and 1.108

version 1.107, 2007/11/06 21:09:42 version 1.108, 2007/11/10 12:51:40
Line 627 
Line 627 
                 /* As long as we aren't aborting and the job didn't return a                  /* As long as we aren't aborting and the job didn't return a
                  * non-zero status that we shouldn't ignore, we call                   * non-zero status that we shouldn't ignore, we call
                  * Make_Update to update the parents. */                   * Make_Update to update the parents. */
                 job->node->made = MADE;                  job->node->built_status = MADE;
                 Make_Update(job->node);                  Make_Update(job->node);
                 free(job);                  free(job);
         } else if (status != 0) {          } else if (status != 0) {
Line 953 
Line 953 
                  */                   */
                 if (cmdsOK) {                  if (cmdsOK) {
                         if (aborting == 0) {                          if (aborting == 0) {
                                 job->node->made = MADE;                                  job->node->built_status = MADE;
                                 Make_Update(job->node);                                  Make_Update(job->node);
                         }                          }
                 }                  }

Legend:
Removed from v.1.107  
changed lines
  Added in v.1.108