Changeset 2666 in kBuild
- Timestamp:
- Nov 15, 2012 12:32:34 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/remake.c
r2591 r2666 465 465 int running = 0; 466 466 #ifdef CONFIG_WITH_EXPLICIT_MULTITARGET 467 struct file *req_file = file; 467 468 struct file *org_file = file; 468 469 struct file *f2, *f3; … … 552 553 f3 = f2; 553 554 } 555 } 556 /** @todo this isn't sufficient, need to introduce a truly optional type and 557 * make |+ ignore mtime. let's hope that doesn't break too much... */ 558 /* If the requested file doesn't exist, always do a remake in the 559 hope that it is recreated even if it's "maybe" target. */ 560 else if (f2 == req_file && file_mtime (f2) == NONEXISTENT_MTIME) 561 { 562 this_mtime = NONEXISTENT_MTIME; 563 f3 = f2; 564 break; 554 565 } 555 566 check_renamed (file);
Note:
See TracChangeset
for help on using the changeset viewer.