mirror of
https://github.com/mirror/make.git
synced 2025-04-05 09:00:17 +08:00
* Minor code cleanup.
This commit is contained in:
parent
e1d72ad3f1
commit
9035aa27b7
5
main.c
5
main.c
@ -1514,10 +1514,9 @@ int main (int argc, char ** argv)
|
||||
|
||||
if (any_remade)
|
||||
goto re_exec;
|
||||
else if (any_failed)
|
||||
if (any_failed)
|
||||
die (2);
|
||||
else
|
||||
break;
|
||||
break;
|
||||
}
|
||||
|
||||
case 0:
|
||||
|
2
remake.c
2
remake.c
@ -125,7 +125,7 @@ update_goal_chain (goals, makefiles)
|
||||
while (g != 0)
|
||||
{
|
||||
/* Iterate over all double-colon entries for this file. */
|
||||
struct file *file = g->file;
|
||||
struct file *file;
|
||||
int stop = 0, any_not_updated = 0;
|
||||
|
||||
for (file = g->file->double_colon ? g->file->double_colon : g->file;
|
||||
|
Loading…
Reference in New Issue
Block a user