Lines Matching defs:errors
450 /* TODO: handle errors */
1123 MakePrintStatus(GNode *gn, int *errors)
1146 (*errors)++;
1160 /* Errors - already counted */
1161 printf("`%s%s' not remade because of errors.\n",
1165 "`%s%s' not remade because of errors.\n",
1181 MakePrintStatusList(&gn->children, errors);
1190 if ((*errors)++ > 100)
1195 MakePrintStatusList(&gn->children, errors);
1200 MakePrintStatusList(GNodeList *gnodes, int *errors)
1205 if (MakePrintStatus(ln->datum, errors))
1386 int errors; /* Number of errors the Job module reports */
1407 errors = Job_MakeDotEnd();
1409 DEBUG1(MAKE, "done: errors %d\n", errors);
1410 if (errors == 0) {
1411 MakePrintStatusList(targets, &errors);
1413 debug_printf("done: errors %d\n", errors);
1414 if (errors > 0)
1418 return errors > 0;