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

Diff for /src/usr.bin/make/error.c between version 1.22 and 1.23

version 1.22, 2012/09/21 07:55:20 version 1.23, 2012/10/02 10:29:30
Line 42 
Line 42 
 #endif  #endif
   
 #include "lowparse.h"  #include "lowparse.h"
   #include "dump.h"
   
 int fatal_errors = 0;  int fatal_errors = 0;
   
Line 84 
Line 85 
         (void)fprintf(stderr, "\n");          (void)fprintf(stderr, "\n");
   
         if (DEBUG(GRAPH2))          if (DEBUG(GRAPH2))
                 Targ_PrintGraph(2);                  post_mortem();
         exit(2);                /* Not 1 so -q can distinguish error */          exit(2);                /* Not 1 so -q can distinguish error */
 }  }
   
Line 112 
Line 113 
   
         Job_AbortAll();          Job_AbortAll();
         if (DEBUG(GRAPH2))          if (DEBUG(GRAPH2))
                 Targ_PrintGraph(2);                  post_mortem();
         exit(2);                /* Not 1, so -q can distinguish error */          exit(2);                /* Not 1, so -q can distinguish error */
 }  }
   
Line 129 
Line 130 
         Job_Wait();          Job_Wait();
         print_errors();          print_errors();
         if (DEBUG(GRAPH2))          if (DEBUG(GRAPH2))
                 Targ_PrintGraph(2);                  post_mortem();
         exit(2);                /* Not 1 so -q can distinguish error */          exit(2);                /* Not 1 so -q can distinguish error */
 }  }
   

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23