mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-24 12:58:39 +00:00
* file.c (remove_intermediates): Restart "rm ..." on error
This commit is contained in:
parent
9043b28250
commit
74bd8b3aa5
1 changed files with 5 additions and 1 deletions
|
@ -424,7 +424,11 @@ remove_intermediates (int sig)
|
|||
}
|
||||
}
|
||||
if (status < 0)
|
||||
perror_with_name ("unlink: ", f->name);
|
||||
{
|
||||
perror_with_name ("\nunlink: ", f->name);
|
||||
/* Start printing over. */
|
||||
doneany = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue