1
0
mirror of https://github.com/mirror/make.git synced 2025-04-05 09:00:17 +08:00

* file.c (remove_intermediates): Restart "rm ..." on error

This commit is contained in:
Paul Smith 2021-03-07 19:04:22 -05:00
parent 9043b28250
commit 74bd8b3aa5

View File

@ -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;
}
}
}
}