Changeset 520 for trunk/src/gmake/remake.c
- Timestamp:
- Sep 16, 2006, 6:56:25 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/remake.c
r503 r520 803 803 int ran = file->command_state == cs_running; 804 804 int touched = 0; 805 DB (DB_JOBS, (_("notice_finished_file - entering: file=%p `%s' update_status=%d command_state=%d\n"), 805 DB (DB_JOBS, (_("notice_finished_file - entering: file=%p `%s' update_status=%d command_state=%d\n"), /* bird */ 806 806 file, file->name, file->update_status, file->command_state)); 807 807 file->command_state = cs_finished; 808 808 file->updated = 1; 809 809 810 #ifdef CONFIG_WITH_EXTENDED_NOTPARALLEL 810 811 /* update not_parallel if the file was flagged for that. */ 811 if (ran && (file->command_flags & (COMMANDS_NOTPARALLEL | COMMANDS_NO_COMMANDS)) 812 == COMMANDS_NOTPARALLEL) 813 { 814 DB (DB_KMK, (_("not_parallel %d -> %d (file=%p `%s')\n"), not_parallel, 812 if ( ran 813 && (file->command_flags & (COMMANDS_NOTPARALLEL | COMMANDS_NO_COMMANDS)) 814 == COMMANDS_NOTPARALLEL) 815 { 816 DB (DB_KMK, (_("not_parallel %d -> %d (file=%p `%s') [notice_finished_file]\n"), not_parallel, 815 817 not_parallel - 1, file, file->name)); 816 818 assert(not_parallel >= 1); 817 819 --not_parallel; 818 820 } 821 #endif 819 822 820 823 if (touch_flag … … 936 939 So mark it now as "succeeded". */ 937 940 file->update_status = 0; 938 939 DB (DB_JOBS, (_("notice_finished_file - leaving: file=%p `%s' update_status=%d command_state=%d\n"), file, file->name, file->update_status, file->command_state));940 941 } 941 942
Note:
See TracChangeset
for help on using the changeset viewer.